Package jakarta.enterprise.context
Annotation Type NormalScope
- 
 @Target(ANNOTATION_TYPE) @Retention(RUNTIME) @Documented public @interface NormalScope Specifies that an annotation type is a normal scope type. - Author:
- Gavin King, Pete Muir
- See Also:
- Scope is used to declare pseudo-scopes.
 
- 
- 
Optional Element SummaryOptional Elements Modifier and Type Optional Element Description booleanpassivatingDetermines whether the normal scope type is a passivating scope.
 
- 
- 
- 
Element Detail- 
passivatingboolean passivating Determines whether the normal scope type is a passivating scope. A bean is called passivation capable if the container is able to temporarily transfer the state of any idle instance to secondary storage. A passivating scope requires that beans with the scope are passivation capable. - Returns:
- trueif the scope type is a passivating scope type
 - Default:
- false
 
 
- 
 
-