Package org.osgi.service.cdi
Enum Class ServiceScope
- All Implemented Interfaces:
Serializable
,Comparable<ServiceScope>
,Constable
Possible values for
ActivationTemplateDTO.scope
.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic ServiceScope
Returns the enum constant of this class with the specified name.static ServiceScope[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
SINGLETON
This activation will only ever create one instanceThe instance is created after the parent component becomes satisfied and is destroyed before the parent component becomes unsatisfied.
If
ActivationTemplateDTO.serviceClasses
is not empty the instance will be registered as an OSGi service withservice.scope=singleton
. -
BUNDLE
This activation will register an OSGi service withservice.scope=bundle
.The service is registered just after all
SINGLETON
activations are set up and just before allSINGLETON
activations are torn down.The
ActivationTemplateDTO.serviceClasses
is not empty when this scope is used. -
PROTOTYPE
This activation will register an OSGi service withservice.scope=prototype
.The service is registered just after all
SINGLETON
activations are set up and just before allSINGLETON
activations are torn down.The
ActivationTemplateDTO.serviceClasses
is not empty when this scope is used.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-