Skip to main content
summaryrefslogtreecommitdiffstats
blob: 4c57c23910aeae68968c3974c7a6e1fcdf676a92 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*********************************************************************
 * Copyright (c) 2019 Boeing
 *
 * This program and the accompanying materials are made
 * available under the terms of the Eclipse Public License 2.0
 * which is available at https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *     Boeing - initial API and implementation
 **********************************************************************/

package org.eclipse.osee.framework.core.data;

import org.eclipse.osee.framework.core.OrcsTokenService;

/**
 * This interface is used to cause its implementations to be class loaded by OSGi before the start of the
 * OrcsTokenService.
 *
 * @author Ryan D. Brooks
 */
public interface OrcsTypeTokenProvider {

   /**
    * Upon binding of this OrcsTypeTokenProvider, its registerTypes method will be invoked
    */
   void registerTypes(OrcsTokenService tokenService);
}

Back to the top