Uses of Class
jakarta.enterprise.context.NormalScope
-
Packages that use NormalScope Package Description jakarta.enterprise.context Annotations and interfaces relating to scopes and contexts.jakarta.faces.flow jakarta.faces.lifecycle jakarta.faces.view jakarta.transaction Provides the API that defines the contract between the transaction manager and the various parties involved in a distributed transaction namely : resource manager, application, and application server. -
-
Uses of NormalScope in jakarta.enterprise.context
Classes in jakarta.enterprise.context with annotations of type NormalScope Modifier and Type Class Description interface
ApplicationScoped
Specifies that a bean is application scoped.interface
ConversationScoped
Specifies that a bean is conversation scoped.interface
RequestScoped
Specifies that a bean is request scoped.interface
SessionScoped
Specifies that a bean is session scoped. -
Uses of NormalScope in jakarta.faces.flow
Classes in jakarta.faces.flow with annotations of type NormalScope Modifier and Type Class Description interface
FlowScoped
FlowScoped is a CDI scope that causes the runtime to consider classes with this annotation to be in the scope of the specifiedFlow
. -
Uses of NormalScope in jakarta.faces.lifecycle
Classes in jakarta.faces.lifecycle with annotations of type NormalScope Modifier and Type Class Description interface
ClientWindowScoped
ClientWindowScoped is a CDI scope that causes the runtime to consider classes with this annotation to be in the scope of the currentClientWindow
. -
Uses of NormalScope in jakarta.faces.view
Classes in jakarta.faces.view with annotations of type NormalScope Modifier and Type Class Description interface
ViewScoped
When this annotation, along withjakarta.inject.Named
is found on a class, the runtime must place the bean in a CDI scope such that it remains active as long asNavigationHandler.handleNavigation(jakarta.faces.context.FacesContext, java.lang.String, java.lang.String)
does not cause a navigation to a view with a viewId that is different than the viewId of the current view. -
Uses of NormalScope in jakarta.transaction
Classes in jakarta.transaction with annotations of type NormalScope Modifier and Type Class Description interface
TransactionScoped
The jakarta.transaction.TransactionScoped annotation provides the ability to specify a standard CDI scope to define bean instances whose lifecycle is scoped to the currently active Jakarta Transactions transaction.
-