Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 9071b2bdbde11a58fbc0e5e5253766d4a447c1fe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/**
 * 
 */
package org.eclipse.papyrus.infra.core.serviceregistry;

/**
 * Kind of possible start method for a service. LAZY - The service start when it
 * is requested for the first time. STARTUP - The service start as soon as the
 * registry is started, or when the service is added is the registry is already
 * started.
 * 
 * @author dumoulin
 * 
 */
public enum ServiceStartKind {

	LAZY, STARTUP;
}

Back to the top