Enum Phase
- java.lang.Object
-
- java.lang.Enum<Phase>
-
- org.jboss.as.server.deployment.Phase
-
- All Implemented Interfaces:
Serializable,Comparable<Phase>
public enum Phase extends Enum<Phase>
An enumeration of the phases of a deployment unit's processing cycle.- Author:
- David M. Lloyd
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLEANUPCONFIGURE_MODULEDEPENDENCIESIn this phase, the full structure of the deployment unit is made available and module dependencies may be assembled.FIRST_MODULE_USEProcessors that need to start/complete before the deployment classloader is used to load application classes, belong in the FIRST_MODULE_USE phase.INSTALLPARSEThis phase assembles information from the root structure to prepare for adding and processing additional external structure, such as from class path entries and other similar mechanisms.POST_MODULEREGISTERIn this phase parsing of deployment metadata is complete and the component may be registered with the subsystem.STRUCTUREThis phase creates the initial root structure.
-
Field Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description AttachmentKey<?>getPhaseKey()Get the attachment key of theDeploymentUnitattachment that represents the result value of this phase.Phasenext()Get the next phase, ornullif none.static PhasevalueOf(String name)Returns the enum constant of this type with the specified name.static Phase[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STRUCTURE
public static final Phase STRUCTURE
This phase creates the initial root structure. Depending on the service for this phase will ensure that the deployment unit's initial root structure is available and accessible.Upon entry, this phase performs the following actions:
- The primary deployment root is mounted (during
STRUCTURE_MOUNT) - Other internal deployment roots are mounted (during
#STRUCTURE_NESTED_JAR)
Processors in this phase have access to the following phase attachments:
- N/A
Processors in this phase have access to the following deployment unit attachments:
Attachments.DEPLOYMENT_ROOT- the mounted deployment root for this deployment unit
In this phase, these phase attachments may be modified:
- The primary deployment root is mounted (during
-
PARSE
public static final Phase PARSE
This phase assembles information from the root structure to prepare for adding and processing additional external structure, such as from class path entries and other similar mechanisms.Upon entry, this phase performs the following actions:
- The root content's MANIFEST is read and made available during
#PARSE_MANIFEST. - The annotation index for the root structure is calculated during
STRUCTURE_ANNOTATION_INDEX.
Processors in this phase have access to the following phase attachments:
Attachments.MANIFEST- the parsed manifest of the root structure
Processors in this phase have access to the following deployment unit attachments, in addition to those defined for the previous phase:
- N/A
In this phase, these phase attachments may be modified:
Attachments.CLASS_PATH_ENTRIES- class path entries found in the manifest and elsewhere.Attachments.EXTENSION_LIST_ENTRIES- extension-list entries found in the manifest and elsewhere.
- The root content's MANIFEST is read and made available during
-
REGISTER
public static final Phase REGISTER
In this phase parsing of deployment metadata is complete and the component may be registered with the subsystem.
-
DEPENDENCIES
public static final Phase DEPENDENCIES
In this phase, the full structure of the deployment unit is made available and module dependencies may be assembled.Upon entry, this phase performs the following actions:
- Any additional external structure is mounted during
#XXX
Processors in this phase have access to the following phase attachments:
Attachments#BLAH- description here
Processors in this phase have access to the following deployment unit attachments, in addition to those defined for the previous phase:
Attachments#BLAH- description here
In this phase, these phase attachments may be modified:
Attachments#BLAH- description here
- Any additional external structure is mounted during
-
CONFIGURE_MODULE
public static final Phase CONFIGURE_MODULE
-
FIRST_MODULE_USE
public static final Phase FIRST_MODULE_USE
Processors that need to start/complete before the deployment classloader is used to load application classes, belong in the FIRST_MODULE_USE phase.
-
POST_MODULE
public static final Phase POST_MODULE
-
INSTALL
public static final Phase INSTALL
-
CLEANUP
public static final Phase CLEANUP
-
-
Field Detail
-
STRUCTURE_LOGGING_CLEANUP
public static final int STRUCTURE_LOGGING_CLEANUP
- See Also:
- Constant Field Values
-
STRUCTURE_EXPLODED_MOUNT
public static final int STRUCTURE_EXPLODED_MOUNT
- See Also:
- Constant Field Values
-
STRUCTURE_MOUNT
public static final int STRUCTURE_MOUNT
- See Also:
- Constant Field Values
-
STRUCTURE_DEPLOYMENT_OVERLAY
public static final int STRUCTURE_DEPLOYMENT_OVERLAY
- See Also:
- Constant Field Values
-
STRUCTURE_MANIFEST
public static final int STRUCTURE_MANIFEST
- See Also:
- Constant Field Values
-
STRUCTURE_OSGI_MANIFEST
@Deprecated public static final int STRUCTURE_OSGI_MANIFEST
Deprecated.there is no phase processing associated with this constant - it was used for OSGi integration- See Also:
- Constant Field Values
-
STRUCTURE_OSGI_PROPERTIES
@Deprecated public static final int STRUCTURE_OSGI_PROPERTIES
Deprecated.there is no phase processing associated with this constant - it was used for OSGi integration- See Also:
- Constant Field Values
-
STRUCTURE_OSGI_WEBBUNDLE
@Deprecated public static final int STRUCTURE_OSGI_WEBBUNDLE
Deprecated.there is no phase processing associated with this constant - it was used for OSGi integration- See Also:
- Constant Field Values
-
STRUCTURE_OSGI_METADATA
@Deprecated public static final int STRUCTURE_OSGI_METADATA
Deprecated.there is no phase processing associated with this constant - it was used for OSGi integration- See Also:
- Constant Field Values
-
STRUCTURE_REMOUNT_EXPLODED
public static final int STRUCTURE_REMOUNT_EXPLODED
- See Also:
- Constant Field Values
-
STRUCTURE_ELYTRON_EXPRESSION_RESOLVER
public static final int STRUCTURE_ELYTRON_EXPRESSION_RESOLVER
- See Also:
- Constant Field Values
-
STRUCTURE_EE_SPEC_DESC_PROPERTY_REPLACEMENT
public static final int STRUCTURE_EE_SPEC_DESC_PROPERTY_REPLACEMENT
- See Also:
- Constant Field Values
-
STRUCTURE_EE_JBOSS_DESC_PROPERTY_REPLACEMENT
public static final int STRUCTURE_EE_JBOSS_DESC_PROPERTY_REPLACEMENT
- See Also:
- Constant Field Values
-
STRUCTURE_EE_EJB_ANNOTATION_PROPERTY_REPLACEMENT
public static final int STRUCTURE_EE_EJB_ANNOTATION_PROPERTY_REPLACEMENT
- See Also:
- Constant Field Values
-
STRUCTURE_EE_DEPLOYMENT_PROPERTIES
public static final int STRUCTURE_EE_DEPLOYMENT_PROPERTIES
- See Also:
- Constant Field Values
-
STRUCTURE_EE_DEPLOYMENT_PROPERTY_RESOLVER
public static final int STRUCTURE_EE_DEPLOYMENT_PROPERTY_RESOLVER
- See Also:
- Constant Field Values
-
STRUCTURE_EE_VAULT_PROPERTY_RESOLVER
public static final int STRUCTURE_EE_VAULT_PROPERTY_RESOLVER
- See Also:
- Constant Field Values
-
STRUCTURE_EE_SYSTEM_PROPERTY_RESOLVER
public static final int STRUCTURE_EE_SYSTEM_PROPERTY_RESOLVER
- See Also:
- Constant Field Values
-
STRUCTURE_EE_FUNCTIONAL_RESOLVERS
public static final int STRUCTURE_EE_FUNCTIONAL_RESOLVERS
- See Also:
- Constant Field Values
-
STRUCTURE_EE_PROPERTY_RESOLVER
public static final int STRUCTURE_EE_PROPERTY_RESOLVER
- See Also:
- Constant Field Values
-
STRUCTURE_JDBC_DRIVER
public static final int STRUCTURE_JDBC_DRIVER
- See Also:
- Constant Field Values
-
STRUCTURE_RAR
public static final int STRUCTURE_RAR
- See Also:
- Constant Field Values
-
STRUCTURE_WAR_DEPLOYMENT_INIT
public static final int STRUCTURE_WAR_DEPLOYMENT_INIT
- See Also:
- Constant Field Values
-
STRUCTURE_WAR
public static final int STRUCTURE_WAR
- See Also:
- Constant Field Values
-
STRUCTURE_EAR_DEPLOYMENT_INIT
public static final int STRUCTURE_EAR_DEPLOYMENT_INIT
- See Also:
- Constant Field Values
-
STRUCTURE_REGISTER_JBOSS_ALL_APPCLIENT
public static final int STRUCTURE_REGISTER_JBOSS_ALL_APPCLIENT
- See Also:
- Constant Field Values
-
STRUCTURE_REGISTER_JBOSS_ALL_EE_APP
public static final int STRUCTURE_REGISTER_JBOSS_ALL_EE_APP
- See Also:
- Constant Field Values
-
STRUCTURE_REGISTER_JBOSS_ALL_EJB
public static final int STRUCTURE_REGISTER_JBOSS_ALL_EJB
- See Also:
- Constant Field Values
-
STRUCTURE_REGISTER_JBOSS_ALL_JPA
public static final int STRUCTURE_REGISTER_JBOSS_ALL_JPA
- See Also:
- Constant Field Values
-
STRUCTURE_REGISTER_JBOSS_ALL_WEB
public static final int STRUCTURE_REGISTER_JBOSS_ALL_WEB
- See Also:
- Constant Field Values
-
STRUCTURE_REGISTER_JBOSS_ALL_DEPLOYMENT_DEPS
public static final int STRUCTURE_REGISTER_JBOSS_ALL_DEPLOYMENT_DEPS
- See Also:
- Constant Field Values
-
STRUCTURE_REGISTER_JBOSS_ALL_STRUCTURE_1_0
public static final int STRUCTURE_REGISTER_JBOSS_ALL_STRUCTURE_1_0
- See Also:
- Constant Field Values
-
STRUCTURE_REGISTER_JBOSS_ALL_STRUCTURE_1_1
public static final int STRUCTURE_REGISTER_JBOSS_ALL_STRUCTURE_1_1
- See Also:
- Constant Field Values
-
STRUCTURE_REGISTER_JBOSS_ALL_STRUCTURE_1_2
public static final int STRUCTURE_REGISTER_JBOSS_ALL_STRUCTURE_1_2
- See Also:
- Constant Field Values
-
STRUCTURE_REGISTER_JBOSS_ALL_WELD
public static final int STRUCTURE_REGISTER_JBOSS_ALL_WELD
- See Also:
- Constant Field Values
-
STRUCTURE_REGISTER_JBOSS_ALL_STRUCTURE_1_3
public static final int STRUCTURE_REGISTER_JBOSS_ALL_STRUCTURE_1_3
- See Also:
- Constant Field Values
-
STRUCTURE_REGISTER_JBOSS_ALL_UNDERTOW_SHARED_SESSION
public static final int STRUCTURE_REGISTER_JBOSS_ALL_UNDERTOW_SHARED_SESSION
- See Also:
- Constant Field Values
-
STRUCTURE_REGISTER_JBOSS_ALL_BATCH
public static final int STRUCTURE_REGISTER_JBOSS_ALL_BATCH
- See Also:
- Constant Field Values
-
STRUCTURE_REGISTER_JBOSS_ALL_SINGLETON_DEPLOYMENT
public static final int STRUCTURE_REGISTER_JBOSS_ALL_SINGLETON_DEPLOYMENT
- See Also:
- Constant Field Values
-
STRUCTURE_REGISTER_JBOSS_ALL_DISTRIBUTABLE_WEB
public static final int STRUCTURE_REGISTER_JBOSS_ALL_DISTRIBUTABLE_WEB
- See Also:
- Constant Field Values
-
STRUCTURE_PARSE_JBOSS_ALL_XML
public static final int STRUCTURE_PARSE_JBOSS_ALL_XML
- See Also:
- Constant Field Values
-
STRUCTURE_EAR_APP_XML_PARSE
public static final int STRUCTURE_EAR_APP_XML_PARSE
- See Also:
- Constant Field Values
-
STRUCTURE_JBOSS_EJB_CLIENT_XML_PARSE
public static final int STRUCTURE_JBOSS_EJB_CLIENT_XML_PARSE
- See Also:
- Constant Field Values
-
STRUCTURE_EJB_EAR_APPLICATION_NAME
public static final int STRUCTURE_EJB_EAR_APPLICATION_NAME
- See Also:
- Constant Field Values
-
STRUCTURE_EAR
public static final int STRUCTURE_EAR
- See Also:
- Constant Field Values
-
STRUCTURE_APP_CLIENT
public static final int STRUCTURE_APP_CLIENT
- See Also:
- Constant Field Values
-
STRUCTURE_SERVICE_MODULE_LOADER
public static final int STRUCTURE_SERVICE_MODULE_LOADER
- See Also:
- Constant Field Values
-
STRUCTURE_ANNOTATION_INDEX
public static final int STRUCTURE_ANNOTATION_INDEX
- See Also:
- Constant Field Values
-
STRUCTURE_EJB_JAR_IN_EAR
public static final int STRUCTURE_EJB_JAR_IN_EAR
- See Also:
- Constant Field Values
-
STRUCTURE_APPLICATION_CLIENT_IN_EAR
public static final int STRUCTURE_APPLICATION_CLIENT_IN_EAR
- See Also:
- Constant Field Values
-
STRUCTURE_MANAGED_BEAN_JAR_IN_EAR
public static final int STRUCTURE_MANAGED_BEAN_JAR_IN_EAR
- See Also:
- Constant Field Values
-
STRUCTURE_BUNDLE_SUB_DEPLOYMENT
@Deprecated public static final int STRUCTURE_BUNDLE_SUB_DEPLOYMENT
Deprecated.there is no phase processing associated with this constant - it was used for OSGi integration- See Also:
- Constant Field Values
-
STRUCTURE_SAR_SUB_DEPLOY_CHECK
public static final int STRUCTURE_SAR_SUB_DEPLOY_CHECK
- See Also:
- Constant Field Values
-
STRUCTURE_SAR
public static final int STRUCTURE_SAR
- See Also:
- Constant Field Values
-
STRUCTURE_ADDITIONAL_MANIFEST
public static final int STRUCTURE_ADDITIONAL_MANIFEST
- See Also:
- Constant Field Values
-
STRUCTURE_SUB_DEPLOYMENT
public static final int STRUCTURE_SUB_DEPLOYMENT
- See Also:
- Constant Field Values
-
STRUCTURE_EAR_SUB_DEPLYOMENTS_ISOLATED
public static final int STRUCTURE_EAR_SUB_DEPLYOMENTS_ISOLATED
- See Also:
- Constant Field Values
-
STRUCTURE_JBOSS_DEPLOYMENT_STRUCTURE
public static final int STRUCTURE_JBOSS_DEPLOYMENT_STRUCTURE
- See Also:
- Constant Field Values
-
STRUCTURE_CLASS_PATH
public static final int STRUCTURE_CLASS_PATH
- See Also:
- Constant Field Values
-
STRUCTURE_MODULE_IDENTIFIERS
public static final int STRUCTURE_MODULE_IDENTIFIERS
- See Also:
- Constant Field Values
-
STRUCTURE_EE_MODULE_INIT
public static final int STRUCTURE_EE_MODULE_INIT
- See Also:
- Constant Field Values
-
STRUCTURE_EE_DEFAULT_BINDINGS_CONFIG
public static final int STRUCTURE_EE_DEFAULT_BINDINGS_CONFIG
- See Also:
- Constant Field Values
-
STRUCTURE_EE_RESOURCE_INJECTION_REGISTRY
public static final int STRUCTURE_EE_RESOURCE_INJECTION_REGISTRY
- See Also:
- Constant Field Values
-
STRUCTURE_DATASOURCE_RESOURCE_INJECTION
public static final int STRUCTURE_DATASOURCE_RESOURCE_INJECTION
- See Also:
- Constant Field Values
-
STRUCTURE_JMS_CONNECTION_FACTORY_RESOURCE_INJECTION
public static final int STRUCTURE_JMS_CONNECTION_FACTORY_RESOURCE_INJECTION
- See Also:
- Constant Field Values
-
STRUCTURE_BEAN_VALIDATION_RESOURCE_INJECTION_REGISTRY
public static final int STRUCTURE_BEAN_VALIDATION_RESOURCE_INJECTION_REGISTRY
- See Also:
- Constant Field Values
-
STRUCTURE_DEPLOYMENT_DEPENDENCIES
public static final int STRUCTURE_DEPLOYMENT_DEPENDENCIES
- See Also:
- Constant Field Values
-
STRUCTURE_GLOBAL_MODULES
public static final int STRUCTURE_GLOBAL_MODULES
- See Also:
- Constant Field Values
-
STRUCTURE_GLOBAL_DIRECTORIES
public static final int STRUCTURE_GLOBAL_DIRECTORIES
- See Also:
- Constant Field Values
-
STRUCTURE_NAMING_EXTERNAL_CONTEXTS
public static final int STRUCTURE_NAMING_EXTERNAL_CONTEXTS
- See Also:
- Constant Field Values
-
STRUCTURE_GLOBAL_REQUEST_CONTROLLER
public static final int STRUCTURE_GLOBAL_REQUEST_CONTROLLER
- See Also:
- Constant Field Values
-
STRUCTURE_WS_SERVICES_DEPS
public static final int STRUCTURE_WS_SERVICES_DEPS
- See Also:
- Constant Field Values
-
STRUCTURE_DEPENDENCIES_MANIFEST
public static final int STRUCTURE_DEPENDENCIES_MANIFEST
- See Also:
- Constant Field Values
-
STRUCTURE_SECURITY_METADATA
public static final int STRUCTURE_SECURITY_METADATA
- See Also:
- Constant Field Values
-
STRUCTURE_DEFERRED_DEPLOYMENT_OVERLAY
public static final int STRUCTURE_DEFERRED_DEPLOYMENT_OVERLAY
- See Also:
- Constant Field Values
-
PARSE_EE_MODULE_NAME
public static final int PARSE_EE_MODULE_NAME
- See Also:
- Constant Field Values
-
PARSE_EJB_DEFAULT_DISTINCT_NAME
public static final int PARSE_EJB_DEFAULT_DISTINCT_NAME
- See Also:
- Constant Field Values
-
PARSE_EAR_SUBDEPLOYMENTS_ISOLATION_DEFAULT
public static final int PARSE_EAR_SUBDEPLOYMENTS_ISOLATION_DEFAULT
- See Also:
- Constant Field Values
-
PARSE_COMPOSITE_ANNOTATION_INDEX
public static final int PARSE_COMPOSITE_ANNOTATION_INDEX
- See Also:
- Constant Field Values
-
PARSE_EXTENSION_LIST
public static final int PARSE_EXTENSION_LIST
- See Also:
- Constant Field Values
-
PARSE_EXTENSION_NAME
public static final int PARSE_EXTENSION_NAME
- See Also:
- Constant Field Values
-
PARSE_OSGI_BUNDLE_INFO
@Deprecated public static final int PARSE_OSGI_BUNDLE_INFO
Deprecated.there is no phase processing associated with this constant - it was used for OSGi integration- See Also:
- Constant Field Values
-
PARSE_WEB_DEPLOYMENT
public static final int PARSE_WEB_DEPLOYMENT
- See Also:
- Constant Field Values
-
PARSE_WEB_DEPLOYMENT_FRAGMENT
public static final int PARSE_WEB_DEPLOYMENT_FRAGMENT
- See Also:
- Constant Field Values
-
PARSE_JSF_VERSION
public static final int PARSE_JSF_VERSION
- See Also:
- Constant Field Values
-
PARSE_JSF_SHARED_TLDS
public static final int PARSE_JSF_SHARED_TLDS
- See Also:
- Constant Field Values
-
PARSE_ANNOTATION_WAR
public static final int PARSE_ANNOTATION_WAR
- See Also:
- Constant Field Values
-
PARSE_ANNOTATION_EJB
public static final int PARSE_ANNOTATION_EJB
- See Also:
- Constant Field Values
-
PARSE_JBOSS_WEB_DEPLOYMENT
public static final int PARSE_JBOSS_WEB_DEPLOYMENT
- See Also:
- Constant Field Values
-
PARSE_EAR_CONTEXT_ROOT
public static final int PARSE_EAR_CONTEXT_ROOT
- See Also:
- Constant Field Values
-
PARSE_EJB_DEPLOYMENT
public static final int PARSE_EJB_DEPLOYMENT
- See Also:
- Constant Field Values
-
PARSE_APP_CLIENT_XML
public static final int PARSE_APP_CLIENT_XML
- See Also:
- Constant Field Values
-
PARSE_CREATE_COMPONENT_DESCRIPTIONS
public static final int PARSE_CREATE_COMPONENT_DESCRIPTIONS
- See Also:
- Constant Field Values
-
PARSE_ENTITY_BEAN_CREATE_COMPONENT_DESCRIPTIONS
public static final int PARSE_ENTITY_BEAN_CREATE_COMPONENT_DESCRIPTIONS
- See Also:
- Constant Field Values
-
PARSE_CMP_ENTITY_BEAN_CREATE_COMPONENT_DESCRIPTIONS
public static final int PARSE_CMP_ENTITY_BEAN_CREATE_COMPONENT_DESCRIPTIONS
- See Also:
- Constant Field Values
-
PARSE_EJB_SESSION_BEAN_DD
public static final int PARSE_EJB_SESSION_BEAN_DD
- See Also:
- Constant Field Values
-
PARSE_EJB_APPLICATION_EXCEPTION_ANNOTATION
public static final int PARSE_EJB_APPLICATION_EXCEPTION_ANNOTATION
- See Also:
- Constant Field Values
-
PARSE_WELD_CONFIGURATION
public static final int PARSE_WELD_CONFIGURATION
- See Also:
- Constant Field Values
-
PARSE_WEB_MERGE_METADATA
public static final int PARSE_WEB_MERGE_METADATA
- See Also:
- Constant Field Values
-
PARSE_TLD_DEPLOYMENT
public static final int PARSE_TLD_DEPLOYMENT
- See Also:
- Constant Field Values
-
PARSE_WEB_COMPONENTS
public static final int PARSE_WEB_COMPONENTS
- See Also:
- Constant Field Values
-
PARSE_UNDERTOW_DEFAULT_SECURITY_DOMAIN
public static final int PARSE_UNDERTOW_DEFAULT_SECURITY_DOMAIN
- See Also:
- Constant Field Values
-
PARSE_OSGI_COMPONENTS
@Deprecated public static final int PARSE_OSGI_COMPONENTS
Deprecated.there is no phase processing associated with this constant - it was used for OSGi integration- See Also:
- Constant Field Values
-
PARSE_WEBSERVICES_CONTEXT_INJECTION
public static final int PARSE_WEBSERVICES_CONTEXT_INJECTION
- See Also:
- Constant Field Values
-
PARSE_WEBSERVICES_LIBRARY_FILTER
public static final int PARSE_WEBSERVICES_LIBRARY_FILTER
- See Also:
- Constant Field Values
-
PARSE_WEBSERVICES_XML
public static final int PARSE_WEBSERVICES_XML
- See Also:
- Constant Field Values
-
PARSE_JBOSS_WEBSERVICES_XML
public static final int PARSE_JBOSS_WEBSERVICES_XML
- See Also:
- Constant Field Values
-
PARSE_WEBSERVICES_ANNOTATION
public static final int PARSE_WEBSERVICES_ANNOTATION
- See Also:
- Constant Field Values
-
PARSE_JAXWS_EJB_INTEGRATION
public static final int PARSE_JAXWS_EJB_INTEGRATION
- See Also:
- Constant Field Values
-
PARSE_JAXRPC_POJO_INTEGRATION
public static final int PARSE_JAXRPC_POJO_INTEGRATION
- See Also:
- Constant Field Values
-
PARSE_JAXRPC_EJB_INTEGRATION
public static final int PARSE_JAXRPC_EJB_INTEGRATION
- See Also:
- Constant Field Values
-
PARSE_JAXWS_HANDLER_CHAIN_ANNOTATION
public static final int PARSE_JAXWS_HANDLER_CHAIN_ANNOTATION
- See Also:
- Constant Field Values
-
PARSE_WS_JMS_INTEGRATION
public static final int PARSE_WS_JMS_INTEGRATION
- See Also:
- Constant Field Values
-
PARSE_XTS_SOAP_HANDLERS
public static final int PARSE_XTS_SOAP_HANDLERS
- See Also:
- Constant Field Values
-
PARSE_JAXWS_ENDPOINT_CREATE_COMPONENT_DESCRIPTIONS
public static final int PARSE_JAXWS_ENDPOINT_CREATE_COMPONENT_DESCRIPTIONS
- See Also:
- Constant Field Values
-
PARSE_XTS_COMPONENT_INTERCEPTORS
public static final int PARSE_XTS_COMPONENT_INTERCEPTORS
- See Also:
- Constant Field Values
-
PARSE_JAXWS_HANDLER_CREATE_COMPONENT_DESCRIPTIONS
public static final int PARSE_JAXWS_HANDLER_CREATE_COMPONENT_DESCRIPTIONS
- See Also:
- Constant Field Values
-
PARSE_RA_DEPLOYMENT
public static final int PARSE_RA_DEPLOYMENT
- See Also:
- Constant Field Values
-
PARSE_SERVICE_LOADER_DEPLOYMENT
public static final int PARSE_SERVICE_LOADER_DEPLOYMENT
- See Also:
- Constant Field Values
-
PARSE_SERVICE_DEPLOYMENT
public static final int PARSE_SERVICE_DEPLOYMENT
- See Also:
- Constant Field Values
-
PARSE_POJO_DEPLOYMENT
public static final int PARSE_POJO_DEPLOYMENT
- See Also:
- Constant Field Values
-
PARSE_IRON_JACAMAR_DEPLOYMENT
public static final int PARSE_IRON_JACAMAR_DEPLOYMENT
- See Also:
- Constant Field Values
-
PARSE_MANAGED_BEAN_ANNOTATION
public static final int PARSE_MANAGED_BEAN_ANNOTATION
- See Also:
- Constant Field Values
-
PARSE_EE_ANNOTATIONS
public static final int PARSE_EE_ANNOTATIONS
- See Also:
- Constant Field Values
-
PARSE_JAXRS_ANNOTATIONS
public static final int PARSE_JAXRS_ANNOTATIONS
- See Also:
- Constant Field Values
-
PARSE_EE_SECURITY_ANNOTATIONS
public static final int PARSE_EE_SECURITY_ANNOTATIONS
- See Also:
- Constant Field Values
-
PARSE_CDI_ANNOTATIONS
public static final int PARSE_CDI_ANNOTATIONS
- See Also:
- Constant Field Values
-
PARSE_CDI_BEAN_DEFINING_ANNOTATIONS
public static final int PARSE_CDI_BEAN_DEFINING_ANNOTATIONS
- See Also:
- Constant Field Values
-
PARSE_WELD_DEPLOYMENT
public static final int PARSE_WELD_DEPLOYMENT
- See Also:
- Constant Field Values
-
PARSE_WELD_IMPLICIT_DEPLOYMENT_DETECTION
public static final int PARSE_WELD_IMPLICIT_DEPLOYMENT_DETECTION
- See Also:
- Constant Field Values
-
PARSE_DATA_SOURCE_DEFINITION_ANNOTATION
public static final int PARSE_DATA_SOURCE_DEFINITION_ANNOTATION
- See Also:
- Constant Field Values
-
PARSE_MAIL_SESSION_DEFINITION_ANNOTATION
public static final int PARSE_MAIL_SESSION_DEFINITION_ANNOTATION
- See Also:
- Constant Field Values
-
PARSE_RESOURCE_DEF_ANNOTATION_ADMINISTERED_OBJECT
public static final int PARSE_RESOURCE_DEF_ANNOTATION_ADMINISTERED_OBJECT
- See Also:
- Constant Field Values
-
PARSE_RESOURCE_DEF_ANNOTATION_CONNECTION_FACTORY
public static final int PARSE_RESOURCE_DEF_ANNOTATION_CONNECTION_FACTORY
- See Also:
- Constant Field Values
-
PARSE_RESOURCE_DEF_ANNOTATION_DATA_SOURCE
public static final int PARSE_RESOURCE_DEF_ANNOTATION_DATA_SOURCE
- See Also:
- Constant Field Values
-
PARSE_RESOURCE_DEF_ANNOTATION_JMS_DESTINATION
public static final int PARSE_RESOURCE_DEF_ANNOTATION_JMS_DESTINATION
- See Also:
- Constant Field Values
-
PARSE_RESOURCE_DEF_ANNOTATION_JMS_CONNECTION_FACTORY
public static final int PARSE_RESOURCE_DEF_ANNOTATION_JMS_CONNECTION_FACTORY
- See Also:
- Constant Field Values
-
PARSE_RESOURCE_DEF_ANNOTATION_MAIL_SESSION
public static final int PARSE_RESOURCE_DEF_ANNOTATION_MAIL_SESSION
- See Also:
- Constant Field Values
-
PARSE_EJB_CONTEXT_BINDING
public static final int PARSE_EJB_CONTEXT_BINDING
- See Also:
- Constant Field Values
-
PARSE_EJB_TIMERSERVICE_BINDING
public static final int PARSE_EJB_TIMERSERVICE_BINDING
- See Also:
- Constant Field Values
-
PARSE_PERSISTENCE_UNIT
public static final int PARSE_PERSISTENCE_UNIT
- See Also:
- Constant Field Values
-
PARSE_PERMISSIONS
public static final int PARSE_PERMISSIONS
- See Also:
- Constant Field Values
-
PARSE_LIFECYCLE_ANNOTATION
public static final int PARSE_LIFECYCLE_ANNOTATION
- See Also:
- Constant Field Values
-
PARSE_PASSIVATION_ANNOTATION
public static final int PARSE_PASSIVATION_ANNOTATION
- See Also:
- Constant Field Values
-
PARSE_AROUNDINVOKE_ANNOTATION
public static final int PARSE_AROUNDINVOKE_ANNOTATION
- See Also:
- Constant Field Values
-
PARSE_AROUNDTIMEOUT_ANNOTATION
public static final int PARSE_AROUNDTIMEOUT_ANNOTATION
- See Also:
- Constant Field Values
-
PARSE_TIMEOUT_ANNOTATION
public static final int PARSE_TIMEOUT_ANNOTATION
- See Also:
- Constant Field Values
-
PARSE_EJB_DD_INTERCEPTORS
public static final int PARSE_EJB_DD_INTERCEPTORS
- See Also:
- Constant Field Values
-
PARSE_EJB_SECURITY_ROLE_REF_DD
public static final int PARSE_EJB_SECURITY_ROLE_REF_DD
- See Also:
- Constant Field Values
-
PARSE_EJB_ASSEMBLY_DESC_DD
public static final int PARSE_EJB_ASSEMBLY_DESC_DD
- See Also:
- Constant Field Values
-
PARSE_DISTINCT_NAME
public static final int PARSE_DISTINCT_NAME
- See Also:
- Constant Field Values
-
PARSE_OSGI_DEPLOYMENT
@Deprecated public static final int PARSE_OSGI_DEPLOYMENT
Deprecated.there is no phase processing associated with this constant - it was used for OSGi integration- See Also:
- Constant Field Values
-
PARSE_OSGI_SUBSYSTEM_ACTIVATOR
@Deprecated public static final int PARSE_OSGI_SUBSYSTEM_ACTIVATOR
Deprecated.there is no phase processing associated with this constant - it was used for OSGi integration- See Also:
- Constant Field Values
-
PARSE_WAB_CONTEXT_FACTORY
@Deprecated public static final int PARSE_WAB_CONTEXT_FACTORY
Deprecated.there is no phase processing associated with this constant - it was used for OSGi integration- See Also:
- Constant Field Values
-
PARSE_EJB_INJECTION_ANNOTATION
public static final int PARSE_EJB_INJECTION_ANNOTATION
- See Also:
- Constant Field Values
-
PARSE_IIOP_OPENJDK
public static final int PARSE_IIOP_OPENJDK
- See Also:
- Constant Field Values
-
PARSE_TRANSACTION_ROLLBACK_ACTION
public static final int PARSE_TRANSACTION_ROLLBACK_ACTION
- See Also:
- Constant Field Values
-
PARSE_EAR_MESSAGE_DESTINATIONS
public static final int PARSE_EAR_MESSAGE_DESTINATIONS
- See Also:
- Constant Field Values
-
PARSE_DSXML_DEPLOYMENT
public static final int PARSE_DSXML_DEPLOYMENT
- See Also:
- Constant Field Values
-
PARSE_MESSAGING_XML_RESOURCES
public static final int PARSE_MESSAGING_XML_RESOURCES
- See Also:
- Constant Field Values
-
PARSE_DESCRIPTOR_LIFECYCLE_METHOD_RESOLUTION
public static final int PARSE_DESCRIPTOR_LIFECYCLE_METHOD_RESOLUTION
- See Also:
- Constant Field Values
-
PARSE_EE_CONCURRENT_DEFAULT_CONTEXT_SERVICE
public static final int PARSE_EE_CONCURRENT_DEFAULT_CONTEXT_SERVICE
- See Also:
- Constant Field Values
-
PARSE_EE_CONCURRENT_DEFAULT_MANAGED_THREAD_FACTORY
public static final int PARSE_EE_CONCURRENT_DEFAULT_MANAGED_THREAD_FACTORY
- See Also:
- Constant Field Values
-
PARSE_EE_CONCURRENT_DEFAULT_MANAGED_EXECUTOR_SERVICE
public static final int PARSE_EE_CONCURRENT_DEFAULT_MANAGED_EXECUTOR_SERVICE
- See Also:
- Constant Field Values
-
PARSE_EE_CONCURRENT_DEFAULT_MANAGED_SCHEDULED_EXECUTOR_SERVICE
public static final int PARSE_EE_CONCURRENT_DEFAULT_MANAGED_SCHEDULED_EXECUTOR_SERVICE
- See Also:
- Constant Field Values
-
PARSE_JSF_MANAGED_BEANS
public static final int PARSE_JSF_MANAGED_BEANS
- See Also:
- Constant Field Values
-
PARSE_JSF_METADATA
public static final int PARSE_JSF_METADATA
- See Also:
- Constant Field Values
-
PARSE_SINGLETON_DEPLOYMENT
public static final int PARSE_SINGLETON_DEPLOYMENT
- See Also:
- Constant Field Values
-
PARSE_DISTRIBUTABLE_WEB
public static final int PARSE_DISTRIBUTABLE_WEB
- See Also:
- Constant Field Values
-
PARSE_NEO4J_DRIVER
public static final int PARSE_NEO4J_DRIVER
- See Also:
- Constant Field Values
-
PARSE_ORIENT_DRIVER
public static final int PARSE_ORIENT_DRIVER
- See Also:
- Constant Field Values
-
PARSE_CASSANDRA_DRIVER
public static final int PARSE_CASSANDRA_DRIVER
- See Also:
- Constant Field Values
-
PARSE_MONGO_DRIVER
public static final int PARSE_MONGO_DRIVER
- See Also:
- Constant Field Values
-
PARSE_MICROPROFILE_JWT_DETECTION
public static final int PARSE_MICROPROFILE_JWT_DETECTION
- See Also:
- Constant Field Values
-
PARSE_DEFINE_VIRTUAL_DOMAIN_NAME
public static final int PARSE_DEFINE_VIRTUAL_DOMAIN_NAME
- See Also:
- Constant Field Values
-
REGISTER_BUNDLE_INSTALL
@Deprecated public static final int REGISTER_BUNDLE_INSTALL
Deprecated.there is no phase processing associated with this constant - it was used for OSGi integration- See Also:
- Constant Field Values
-
DEPENDENCIES_EE_PERMISSIONS
public static final int DEPENDENCIES_EE_PERMISSIONS
- See Also:
- Constant Field Values
-
DEPENDENCIES_EJB_PERMISSIONS
public static final int DEPENDENCIES_EJB_PERMISSIONS
- See Also:
- Constant Field Values
-
DEPENDENCIES_DISTRIBUTABLE_WEB
public static final int DEPENDENCIES_DISTRIBUTABLE_WEB
- See Also:
- Constant Field Values
-
DEPENDENCIES_EJB
public static final int DEPENDENCIES_EJB
- See Also:
- Constant Field Values
-
DEPENDENCIES_EJB_SERVER_INTERCEPTORS
public static final int DEPENDENCIES_EJB_SERVER_INTERCEPTORS
- See Also:
- Constant Field Values
-
DEPENDENCIES_MODULE
public static final int DEPENDENCIES_MODULE
- See Also:
- Constant Field Values
-
DEPENDENCIES_RAR_CONFIG
public static final int DEPENDENCIES_RAR_CONFIG
- See Also:
- Constant Field Values
-
DEPENDENCIES_MANAGED_BEAN
public static final int DEPENDENCIES_MANAGED_BEAN
- See Also:
- Constant Field Values
-
DEPENDENCIES_BEAN_VALIDATION
public static final int DEPENDENCIES_BEAN_VALIDATION
- See Also:
- Constant Field Values
-
DEPENDENCIES_SAR_MODULE
public static final int DEPENDENCIES_SAR_MODULE
- See Also:
- Constant Field Values
-
DEPENDENCIES_WAR_MODULE
public static final int DEPENDENCIES_WAR_MODULE
- See Also:
- Constant Field Values
-
DEPENDENCIES_CLASS_PATH
public static final int DEPENDENCIES_CLASS_PATH
- See Also:
- Constant Field Values
-
DEPENDENCIES_EXTENSION_LIST
public static final int DEPENDENCIES_EXTENSION_LIST
- See Also:
- Constant Field Values
-
DEPENDENCIES_WELD
public static final int DEPENDENCIES_WELD
- See Also:
- Constant Field Values
-
DEPENDENCIES_SEAM
public static final int DEPENDENCIES_SEAM
- See Also:
- Constant Field Values
-
DEPENDENCIES_WS
public static final int DEPENDENCIES_WS
- See Also:
- Constant Field Values
-
DEPENDENCIES_ELYTRON
public static final int DEPENDENCIES_ELYTRON
- See Also:
- Constant Field Values
-
DEPENDENCIES_ELYTRON_EE_SECURITY
public static final int DEPENDENCIES_ELYTRON_EE_SECURITY
- See Also:
- Constant Field Values
-
DEPENDENCIES_JAXRS
public static final int DEPENDENCIES_JAXRS
- See Also:
- Constant Field Values
-
DEPENDENCIES_EE_SECURITY
public static final int DEPENDENCIES_EE_SECURITY
- See Also:
- Constant Field Values
-
DEPENDENCIES_JAXRS_SPRING
public static final int DEPENDENCIES_JAXRS_SPRING
- See Also:
- Constant Field Values
-
DEPENDENCIES_SUB_DEPLOYMENTS
public static final int DEPENDENCIES_SUB_DEPLOYMENTS
- See Also:
- Constant Field Values
-
DEPENDENCIES_PERSISTENCE_ANNOTATION
public static final int DEPENDENCIES_PERSISTENCE_ANNOTATION
- See Also:
- Constant Field Values
-
DEPENDENCIES_JPA
public static final int DEPENDENCIES_JPA
- See Also:
- Constant Field Values
-
DEPENDENCIES_HIBERNATE_SEARCH
public static final int DEPENDENCIES_HIBERNATE_SEARCH
- See Also:
- Constant Field Values
-
DEPENDENCIES_TRANSACTIONS
public static final int DEPENDENCIES_TRANSACTIONS
- See Also:
- Constant Field Values
-
DEPENDENCIES_XTS
public static final int DEPENDENCIES_XTS
- See Also:
- Constant Field Values
-
DEPENDENCIES_JDK
public static final int DEPENDENCIES_JDK
- See Also:
- Constant Field Values
-
DEPENDENCIES_IIOP_OPENJDK
public static final int DEPENDENCIES_IIOP_OPENJDK
- See Also:
- Constant Field Values
-
DEPENDENCIES_JMS
public static final int DEPENDENCIES_JMS
- See Also:
- Constant Field Values
-
DEPENDENCIES_CMP
public static final int DEPENDENCIES_CMP
- See Also:
- Constant Field Values
-
DEPENDENCIES_JAXR
public static final int DEPENDENCIES_JAXR
- See Also:
- Constant Field Values
-
DEPENDENCIES_DRIVERS
public static final int DEPENDENCIES_DRIVERS
- See Also:
- Constant Field Values
-
DEPENDENCIES_JSF
public static final int DEPENDENCIES_JSF
- See Also:
- Constant Field Values
-
DEPENDENCIES_MICROPROFILE_CONFIG
public static final int DEPENDENCIES_MICROPROFILE_CONFIG
- See Also:
- Constant Field Values
-
DEPENDENCIES_MICROPROFILE_METRICS
public static final int DEPENDENCIES_MICROPROFILE_METRICS
- See Also:
- Constant Field Values
-
DEPENDENCIES_MICROPROFILE_HEALTH
public static final int DEPENDENCIES_MICROPROFILE_HEALTH
- See Also:
- Constant Field Values
-
DEPENDENCIES_MICROPROFILE_OPENTRACING
public static final int DEPENDENCIES_MICROPROFILE_OPENTRACING
- See Also:
- Constant Field Values
-
DEPENDENCIES_MICROPROFILE_OPENAPI
public static final int DEPENDENCIES_MICROPROFILE_OPENAPI
- See Also:
- Constant Field Values
-
DEPENDENCIES_MICROPROFILE_JWT
public static final int DEPENDENCIES_MICROPROFILE_JWT
- See Also:
- Constant Field Values
-
DEPENDENCIES_MICROPROFILE_REACTIVE_MESSAGING
public static final int DEPENDENCIES_MICROPROFILE_REACTIVE_MESSAGING
- See Also:
- Constant Field Values
-
DEPENDENCIES_MICROPROFILE_REACTIVE_STREAMS_OPERATORS
public static final int DEPENDENCIES_MICROPROFILE_REACTIVE_STREAMS_OPERATORS
- See Also:
- Constant Field Values
-
DEPENDENCIES_MICROPROFILE_FAULT_TOLERANCE
public static final int DEPENDENCIES_MICROPROFILE_FAULT_TOLERANCE
- See Also:
- Constant Field Values
-
DEPENDENCIES_BUNDLE
@Deprecated public static final int DEPENDENCIES_BUNDLE
Deprecated.there is no phase processing associated with this constant - it was used for OSGi integration- See Also:
- Constant Field Values
-
DEPENDENCIES_BUNDLE_CONTEXT_BINDING
@Deprecated public static final int DEPENDENCIES_BUNDLE_CONTEXT_BINDING
Deprecated.there is no phase processing associated with this constant - it was used for OSGi integration- See Also:
- Constant Field Values
-
DEPENDENCIES_BATCH
public static final int DEPENDENCIES_BATCH
- See Also:
- Constant Field Values
-
DEPENDENCIES_CLUSTERING
public static final int DEPENDENCIES_CLUSTERING
- See Also:
- Constant Field Values
-
DEPENDENCIES_LOGGING
public static final int DEPENDENCIES_LOGGING
- See Also:
- Constant Field Values
-
DEPENDENCIES_MAIL
public static final int DEPENDENCIES_MAIL
- See Also:
- Constant Field Values
-
DEPENDENCIES_JSR77
public static final int DEPENDENCIES_JSR77
- See Also:
- Constant Field Values
-
DEPENDENCIES_NEO4J_DRIVER
public static final int DEPENDENCIES_NEO4J_DRIVER
- See Also:
- Constant Field Values
-
DEPENDENCIES_ORIENT_DRIVER
public static final int DEPENDENCIES_ORIENT_DRIVER
- See Also:
- Constant Field Values
-
DEPENDENCIES_CASSANDRA_DRIVER
public static final int DEPENDENCIES_CASSANDRA_DRIVER
- See Also:
- Constant Field Values
-
DEPENDENCIES_MONGO_DRIVER
public static final int DEPENDENCIES_MONGO_DRIVER
- See Also:
- Constant Field Values
-
DEPENDENCIES_APPLICATION_CLIENT
public static final int DEPENDENCIES_APPLICATION_CLIENT
- See Also:
- Constant Field Values
-
DEPENDENCIES_VISIBLE_MODULES
public static final int DEPENDENCIES_VISIBLE_MODULES
- See Also:
- Constant Field Values
-
DEPENDENCIES_EE_CLASS_DESCRIPTIONS
public static final int DEPENDENCIES_EE_CLASS_DESCRIPTIONS
- See Also:
- Constant Field Values
-
DEPENDENCIES_SINGLETON_DEPLOYMENT
public static final int DEPENDENCIES_SINGLETON_DEPLOYMENT
- See Also:
- Constant Field Values
-
CONFIGURE_RESOLVE_BUNDLE
@Deprecated public static final int CONFIGURE_RESOLVE_BUNDLE
Deprecated.there is no phase processing associated with this constant - it was used for OSGi integration- See Also:
- Constant Field Values
-
CONFIGURE_JDBC_DRIVER_MANAGER_ADAPTER
public static final int CONFIGURE_JDBC_DRIVER_MANAGER_ADAPTER
- See Also:
- Constant Field Values
-
CONFIGURE_DISTRIBUTABLE_WEB
public static final int CONFIGURE_DISTRIBUTABLE_WEB
- See Also:
- Constant Field Values
-
CONFIGURE_MODULE_SPEC
public static final int CONFIGURE_MODULE_SPEC
- See Also:
- Constant Field Values
-
CONFIGURE_DEFERRED_PHASE
public static final int CONFIGURE_DEFERRED_PHASE
- See Also:
- Constant Field Values
-
CONFIGURE_SINGLETON_DEPLOYMENT
public static final int CONFIGURE_SINGLETON_DEPLOYMENT
- See Also:
- Constant Field Values
-
CONFIGURE_AUTHENTICATION_CONTEXT
public static final int CONFIGURE_AUTHENTICATION_CONTEXT
- See Also:
- Constant Field Values
-
CONFIGURE_DEFAULT_SSL_CONTEXT
public static final int CONFIGURE_DEFAULT_SSL_CONTEXT
- See Also:
- Constant Field Values
-
FIRST_MODULE_USE_PERSISTENCE_CLASS_FILE_TRANSFORMER
public static final int FIRST_MODULE_USE_PERSISTENCE_CLASS_FILE_TRANSFORMER
- See Also:
- Constant Field Values
-
FIRST_MODULE_USE_INTERCEPTORS
public static final int FIRST_MODULE_USE_INTERCEPTORS
- See Also:
- Constant Field Values
-
FIRST_MODULE_USE_PERSISTENCE_PREPARE
public static final int FIRST_MODULE_USE_PERSISTENCE_PREPARE
- See Also:
- Constant Field Values
-
FIRST_MODULE_USE_DSXML_DEPLOYMENT
public static final int FIRST_MODULE_USE_DSXML_DEPLOYMENT
- See Also:
- Constant Field Values
-
FIRST_MODULE_USE_TRANSFORMER
public static final int FIRST_MODULE_USE_TRANSFORMER
- See Also:
- Constant Field Values
-
FIRST_MODULE_USE_AUTHENTICATION_CONTEXT
public static final int FIRST_MODULE_USE_AUTHENTICATION_CONTEXT
- See Also:
- Constant Field Values
-
POST_MODULE_INJECTION_ANNOTATION
public static final int POST_MODULE_INJECTION_ANNOTATION
- See Also:
- Constant Field Values
-
POST_MODULE_REFLECTION_INDEX
public static final int POST_MODULE_REFLECTION_INDEX
- See Also:
- Constant Field Values
-
POST_MODULE_WAB_FRAGMENTS
@Deprecated public static final int POST_MODULE_WAB_FRAGMENTS
Deprecated.there is no phase processing associated with this constant - it was used for OSGi integration- See Also:
- Constant Field Values
-
POST_MODULE_JSF_MANAGED_BEANS
public static final int POST_MODULE_JSF_MANAGED_BEANS
- See Also:
- Constant Field Values
-
POST_MODULE_INTERCEPTOR_ANNOTATIONS
public static final int POST_MODULE_INTERCEPTOR_ANNOTATIONS
- See Also:
- Constant Field Values
-
POST_MODULE_JSF_CDI_EXTENSIONS
public static final int POST_MODULE_JSF_CDI_EXTENSIONS
- See Also:
- Constant Field Values
-
POST_MODULE_EJB_DEFAULT_SECURITY_DOMAIN
public static final int POST_MODULE_EJB_DEFAULT_SECURITY_DOMAIN
- See Also:
- Constant Field Values
-
POST_MODULE_EJB_BUSINESS_VIEW_ANNOTATION
public static final int POST_MODULE_EJB_BUSINESS_VIEW_ANNOTATION
- See Also:
- Constant Field Values
-
POST_MODULE_EJB_HOME_MERGE
public static final int POST_MODULE_EJB_HOME_MERGE
- See Also:
- Constant Field Values
-
POST_MODULE_EJB_DD_METHOD_RESOLUTION
public static final int POST_MODULE_EJB_DD_METHOD_RESOLUTION
- See Also:
- Constant Field Values
-
POST_MODULE_EJB_TIMER_METADATA_MERGE
public static final int POST_MODULE_EJB_TIMER_METADATA_MERGE
- See Also:
- Constant Field Values
-
POST_MODULE_EJB_SLSB_POOL_NAME_MERGE
public static final int POST_MODULE_EJB_SLSB_POOL_NAME_MERGE
- See Also:
- Constant Field Values
-
POST_MODULE_EJB_MDB_POOL_NAME_MERGE
public static final int POST_MODULE_EJB_MDB_POOL_NAME_MERGE
- See Also:
- Constant Field Values
-
POST_MODULE_EJB_ENTITY_POOL_NAME_MERGE
public static final int POST_MODULE_EJB_ENTITY_POOL_NAME_MERGE
- See Also:
- Constant Field Values
-
POST_MODULE_EJB_USER_APP_SPECIFIC_CONTAINER_INTERCEPTORS
public static final int POST_MODULE_EJB_USER_APP_SPECIFIC_CONTAINER_INTERCEPTORS
- See Also:
- Constant Field Values
-
POST_MODULE_EJB_SERVER_INTERCEPTORS
public static final int POST_MODULE_EJB_SERVER_INTERCEPTORS
- See Also:
- Constant Field Values
-
POST_MODULE_EJB_DD_INTERCEPTORS
public static final int POST_MODULE_EJB_DD_INTERCEPTORS
- See Also:
- Constant Field Values
-
POST_MODULE_EJB_TIMER_SERVICE
public static final int POST_MODULE_EJB_TIMER_SERVICE
- See Also:
- Constant Field Values
-
POST_MODULE_EJB_TRANSACTION_MANAGEMENT
public static final int POST_MODULE_EJB_TRANSACTION_MANAGEMENT
- See Also:
- Constant Field Values
-
POST_MODULE_EJB_TX_ATTR_MERGE
public static final int POST_MODULE_EJB_TX_ATTR_MERGE
- See Also:
- Constant Field Values
-
POST_MODULE_EJB_CONCURRENCY_MANAGEMENT_MERGE
public static final int POST_MODULE_EJB_CONCURRENCY_MANAGEMENT_MERGE
- See Also:
- Constant Field Values
-
POST_MODULE_EJB_CONCURRENCY_MERGE
public static final int POST_MODULE_EJB_CONCURRENCY_MERGE
- See Also:
- Constant Field Values
-
POST_MODULE_EJB_RUN_AS_MERGE
public static final int POST_MODULE_EJB_RUN_AS_MERGE
- See Also:
- Constant Field Values
-
POST_MODULE_EJB_RESOURCE_ADAPTER_MERGE
public static final int POST_MODULE_EJB_RESOURCE_ADAPTER_MERGE
- See Also:
- Constant Field Values
-
POST_MODULE_EJB_REMOVE_METHOD
public static final int POST_MODULE_EJB_REMOVE_METHOD
- See Also:
- Constant Field Values
-
POST_MODULE_EJB_STARTUP_MERGE
public static final int POST_MODULE_EJB_STARTUP_MERGE
- See Also:
- Constant Field Values
-
POST_MODULE_EJB_SECURITY_DOMAIN
public static final int POST_MODULE_EJB_SECURITY_DOMAIN
- See Also:
- Constant Field Values
-
POST_MODULE_EJB_ROLES
public static final int POST_MODULE_EJB_ROLES
- See Also:
- Constant Field Values
-
POST_MODULE_METHOD_PERMISSIONS
public static final int POST_MODULE_METHOD_PERMISSIONS
- See Also:
- Constant Field Values
-
POST_MODULE_EJB_STATEFUL_TIMEOUT
public static final int POST_MODULE_EJB_STATEFUL_TIMEOUT
- See Also:
- Constant Field Values
-
POST_MODULE_EJB_ASYNCHRONOUS_MERGE
public static final int POST_MODULE_EJB_ASYNCHRONOUS_MERGE
- See Also:
- Constant Field Values
-
POST_MODULE_EJB_SESSION_SYNCHRONIZATION
public static final int POST_MODULE_EJB_SESSION_SYNCHRONIZATION
- See Also:
- Constant Field Values
-
POST_MODULE_EJB_INIT_METHOD
public static final int POST_MODULE_EJB_INIT_METHOD
- See Also:
- Constant Field Values
-
POST_MODULE_EJB_SESSION_BEAN
public static final int POST_MODULE_EJB_SESSION_BEAN
- See Also:
- Constant Field Values
-
POST_MODULE_EJB_SECURITY_PRINCIPAL_ROLE_MAPPING_MERGE
public static final int POST_MODULE_EJB_SECURITY_PRINCIPAL_ROLE_MAPPING_MERGE
- See Also:
- Constant Field Values
-
POST_MODULE_EJB_SECURITY_MISSING_METHOD_PERMISSIONS
public static final int POST_MODULE_EJB_SECURITY_MISSING_METHOD_PERMISSIONS
- See Also:
- Constant Field Values
-
POST_MODULE_EJB_CACHE
public static final int POST_MODULE_EJB_CACHE
- See Also:
- Constant Field Values
-
POST_MODULE_EJB_CLUSTERED
public static final int POST_MODULE_EJB_CLUSTERED
- See Also:
- Constant Field Values
-
POST_MODULE_EJB_DELIVERY_ACTIVE_MERGE
public static final int POST_MODULE_EJB_DELIVERY_ACTIVE_MERGE
- See Also:
- Constant Field Values
-
POST_MODULE_WELD_WEB_INTEGRATION
public static final int POST_MODULE_WELD_WEB_INTEGRATION
- See Also:
- Constant Field Values
-
POST_MODULE_WELD_DEVELOPMENT_MODE
public static final int POST_MODULE_WELD_DEVELOPMENT_MODE
- See Also:
- Constant Field Values
-
POST_MODULE_WELD_COMPONENT_INTEGRATION
public static final int POST_MODULE_WELD_COMPONENT_INTEGRATION
- See Also:
- Constant Field Values
-
POST_MODULE_INSTALL_EXTENSION
public static final int POST_MODULE_INSTALL_EXTENSION
- See Also:
- Constant Field Values
-
POST_MODULE_VALIDATOR_FACTORY
public static final int POST_MODULE_VALIDATOR_FACTORY
- See Also:
- Constant Field Values
-
POST_MODULE_EAR_DEPENDENCY
public static final int POST_MODULE_EAR_DEPENDENCY
- See Also:
- Constant Field Values
-
POST_MODULE_WELD_BEAN_ARCHIVE
public static final int POST_MODULE_WELD_BEAN_ARCHIVE
- See Also:
- Constant Field Values
-
POST_MODULE_WELD_EXTERNAL_BEAN_ARCHIVE
public static final int POST_MODULE_WELD_EXTERNAL_BEAN_ARCHIVE
- See Also:
- Constant Field Values
-
POST_MODULE_WELD_PORTABLE_EXTENSIONS
public static final int POST_MODULE_WELD_PORTABLE_EXTENSIONS
- See Also:
- Constant Field Values
-
POST_MODULE_XTS_PORTABLE_EXTENSIONS
public static final int POST_MODULE_XTS_PORTABLE_EXTENSIONS
- See Also:
- Constant Field Values
-
POST_MODULE_JMS_CDI_EXTENSIONS
public static final int POST_MODULE_JMS_CDI_EXTENSIONS
- See Also:
- Constant Field Values
-
POST_MODULE_JMS_DEFINITION_DEPLOYMENT
public static final int POST_MODULE_JMS_DEFINITION_DEPLOYMENT
- See Also:
- Constant Field Values
-
POST_MODULE_EJB_IMPLICIT_NO_INTERFACE_VIEW
public static final int POST_MODULE_EJB_IMPLICIT_NO_INTERFACE_VIEW
- See Also:
- Constant Field Values
-
POST_MODULE_EJB_JNDI_BINDINGS
public static final int POST_MODULE_EJB_JNDI_BINDINGS
- See Also:
- Constant Field Values
-
POST_MODULE_EJB_CLIENT_METADATA
public static final int POST_MODULE_EJB_CLIENT_METADATA
- See Also:
- Constant Field Values
-
POST_MODULE_EJB_DISCOVERY
public static final int POST_MODULE_EJB_DISCOVERY
- See Also:
- Constant Field Values
-
POST_MODULE_EJB_APPLICATION_EXCEPTIONS
public static final int POST_MODULE_EJB_APPLICATION_EXCEPTIONS
- See Also:
- Constant Field Values
-
POST_INITIALIZE_IN_ORDER
public static final int POST_INITIALIZE_IN_ORDER
- See Also:
- Constant Field Values
-
POST_MODULE_ENV_ENTRY
public static final int POST_MODULE_ENV_ENTRY
- See Also:
- Constant Field Values
-
POST_MODULE_EJB_REF
public static final int POST_MODULE_EJB_REF
- See Also:
- Constant Field Values
-
POST_MODULE_PERSISTENCE_REF
public static final int POST_MODULE_PERSISTENCE_REF
- See Also:
- Constant Field Values
-
POST_MODULE_DATASOURCE_REF
public static final int POST_MODULE_DATASOURCE_REF
- See Also:
- Constant Field Values
-
POST_MODULE_MAIL_SESSION_REF
public static final int POST_MODULE_MAIL_SESSION_REF
- See Also:
- Constant Field Values
-
POST_MODULE_RESOURCE_DEF_XML_ADMINISTERED_OBJECT
public static final int POST_MODULE_RESOURCE_DEF_XML_ADMINISTERED_OBJECT
- See Also:
- Constant Field Values
-
POST_MODULE_RESOURCE_DEF_XML_CONNECTION_FACTORY
public static final int POST_MODULE_RESOURCE_DEF_XML_CONNECTION_FACTORY
- See Also:
- Constant Field Values
-
POST_MODULE_RESOURCE_DEF_XML_DATA_SOURCE
public static final int POST_MODULE_RESOURCE_DEF_XML_DATA_SOURCE
- See Also:
- Constant Field Values
-
POST_MODULE_RESOURCE_DEF_XML_JMS_DESTINATION
public static final int POST_MODULE_RESOURCE_DEF_XML_JMS_DESTINATION
- See Also:
- Constant Field Values
-
POST_MODULE_RESOURCE_DEF_XML_JMS_CONNECTION_FACTORY
public static final int POST_MODULE_RESOURCE_DEF_XML_JMS_CONNECTION_FACTORY
- See Also:
- Constant Field Values
-
POST_MODULE_RESOURCE_DEF_XML_MAIL_SESSION
public static final int POST_MODULE_RESOURCE_DEF_XML_MAIL_SESSION
- See Also:
- Constant Field Values
-
POST_MODULE_WS_REF_DESCRIPTOR
public static final int POST_MODULE_WS_REF_DESCRIPTOR
- See Also:
- Constant Field Values
-
POST_MODULE_WS_REF_ANNOTATION
public static final int POST_MODULE_WS_REF_ANNOTATION
- See Also:
- Constant Field Values
-
POST_MODULE_WS_VERIFICATION
public static final int POST_MODULE_WS_VERIFICATION
- See Also:
- Constant Field Values
-
POST_MODULE_JAXRS_SCANNING
public static final int POST_MODULE_JAXRS_SCANNING
- See Also:
- Constant Field Values
-
POST_MODULE_JAXRS_COMPONENT
public static final int POST_MODULE_JAXRS_COMPONENT
- See Also:
- Constant Field Values
-
POST_MODULE_JAXRS_CDI_INTEGRATION
public static final int POST_MODULE_JAXRS_CDI_INTEGRATION
- See Also:
- Constant Field Values
-
POST_MODULE_JAXRS_METHOD_PARAMETER
public static final int POST_MODULE_JAXRS_METHOD_PARAMETER
- See Also:
- Constant Field Values
-
POST_MODULE_RTS_PROVIDERS
public static final int POST_MODULE_RTS_PROVIDERS
- See Also:
- Constant Field Values
-
POST_MODULE_LOCAL_HOME
public static final int POST_MODULE_LOCAL_HOME
- See Also:
- Constant Field Values
-
POST_MODULE_APPLICATION_CLIENT_MANIFEST
public static final int POST_MODULE_APPLICATION_CLIENT_MANIFEST
- See Also:
- Constant Field Values
-
POST_MODULE_APPLICATION_CLIENT_ACTIVE
public static final int POST_MODULE_APPLICATION_CLIENT_ACTIVE
- See Also:
- Constant Field Values
-
POST_MODULE_EJB_ORB_BIND
public static final int POST_MODULE_EJB_ORB_BIND
- See Also:
- Constant Field Values
-
POST_MODULE_CMP_PARSE
public static final int POST_MODULE_CMP_PARSE
- See Also:
- Constant Field Values
-
POST_MODULE_CMP_ENTITY_METADATA
public static final int POST_MODULE_CMP_ENTITY_METADATA
- See Also:
- Constant Field Values
-
POST_MODULE_CMP_STORE_MANAGER
public static final int POST_MODULE_CMP_STORE_MANAGER
- See Also:
- Constant Field Values
-
POST_MODULE_EJB_IIOP
public static final int POST_MODULE_EJB_IIOP
- See Also:
- Constant Field Values
-
POST_MODULE_POJO
public static final int POST_MODULE_POJO
- See Also:
- Constant Field Values
-
POST_MODULE_IN_APP_CLIENT
public static final int POST_MODULE_IN_APP_CLIENT
- See Also:
- Constant Field Values
-
POST_MODULE_EE_INSTANCE_NAME
public static final int POST_MODULE_EE_INSTANCE_NAME
- See Also:
- Constant Field Values
-
POST_MODULE_NAMING_CONTEXT
public static final int POST_MODULE_NAMING_CONTEXT
- See Also:
- Constant Field Values
-
POST_MODULE_APP_NAMING_CONTEXT
public static final int POST_MODULE_APP_NAMING_CONTEXT
- See Also:
- Constant Field Values
-
POST_MODULE_CACHED_CONNECTION_MANAGER
public static final int POST_MODULE_CACHED_CONNECTION_MANAGER
- See Also:
- Constant Field Values
-
POST_MODULE_LOGGING_CONFIG
public static final int POST_MODULE_LOGGING_CONFIG
- See Also:
- Constant Field Values
-
POST_MODULE_LOGGING_PROFILE
public static final int POST_MODULE_LOGGING_PROFILE
- See Also:
- Constant Field Values
-
POST_MODULE_EL_EXPRESSION_FACTORY
public static final int POST_MODULE_EL_EXPRESSION_FACTORY
- See Also:
- Constant Field Values
-
POST_MODULE_SAR_SERVICE_COMPONENT
public static final int POST_MODULE_SAR_SERVICE_COMPONENT
- See Also:
- Constant Field Values
-
POST_MODULE_UNDERTOW_WEBSOCKETS
public static final int POST_MODULE_UNDERTOW_WEBSOCKETS
- See Also:
- Constant Field Values
-
POST_MODULE_UNDERTOW_HANDLERS
public static final int POST_MODULE_UNDERTOW_HANDLERS
- See Also:
- Constant Field Values
-
POST_MODULE_EXTERNAL_TAGLIB
public static final int POST_MODULE_EXTERNAL_TAGLIB
- See Also:
- Constant Field Values
-
POST_MODULE_UNDERTOW_SERVLET_CONTAINER_DEPENDENCY
public static final int POST_MODULE_UNDERTOW_SERVLET_CONTAINER_DEPENDENCY
- See Also:
- Constant Field Values
-
POST_MODULE_EE_CONCURRENT_CONTEXT
public static final int POST_MODULE_EE_CONCURRENT_CONTEXT
- See Also:
- Constant Field Values
-
POST_MODULE_EE_STARTUP_COUNTDOWN
public static final int POST_MODULE_EE_STARTUP_COUNTDOWN
- See Also:
- Constant Field Values
-
POST_MODULE_BATCH_ENVIRONMENT
public static final int POST_MODULE_BATCH_ENVIRONMENT
- See Also:
- Constant Field Values
-
POST_MODULE_RAR_SERVICES_DEPS
public static final int POST_MODULE_RAR_SERVICES_DEPS
- See Also:
- Constant Field Values
-
POST_MODULE_UNDERTOW_MODCLUSTER
public static final int POST_MODULE_UNDERTOW_MODCLUSTER
- See Also:
- Constant Field Values
-
POST_MODULE_TRANSACTIONS_EE_CONCURRENCY
public static final int POST_MODULE_TRANSACTIONS_EE_CONCURRENCY
- See Also:
- Constant Field Values
-
POST_MODULE_EE_COMPONENT_SUSPEND
public static final int POST_MODULE_EE_COMPONENT_SUSPEND
- See Also:
- Constant Field Values
-
POST_MODULE_PERMISSIONS_VALIDATION
public static final int POST_MODULE_PERMISSIONS_VALIDATION
- See Also:
- Constant Field Values
-
POST_MODULE_MICROPROFILE_CONFIG
public static final int POST_MODULE_MICROPROFILE_CONFIG
- See Also:
- Constant Field Values
-
POST_MODULE_METRICS
public static final int POST_MODULE_METRICS
- See Also:
- Constant Field Values
-
POST_MODULE_MICROPROFILE_METRICS
public static final int POST_MODULE_MICROPROFILE_METRICS
- See Also:
- Constant Field Values
-
POST_MODULE_HEALTH
public static final int POST_MODULE_HEALTH
- See Also:
- Constant Field Values
-
POST_MODULE_MICROPROFILE_HEALTH
public static final int POST_MODULE_MICROPROFILE_HEALTH
- See Also:
- Constant Field Values
-
POST_MODULE_MICROPROFILE_OPENTRACING
public static final int POST_MODULE_MICROPROFILE_OPENTRACING
- See Also:
- Constant Field Values
-
POST_MODULE_MICROPROFILE_OPENAPI
public static final int POST_MODULE_MICROPROFILE_OPENAPI
- See Also:
- Constant Field Values
-
POST_MODULE_MICROPROFILE_FAULT_TOLERANCE
public static final int POST_MODULE_MICROPROFILE_FAULT_TOLERANCE
- See Also:
- Constant Field Values
-
POST_MODULE_EJB_HIBERNATE_VALIDATOR
public static final int POST_MODULE_EJB_HIBERNATE_VALIDATOR
- See Also:
- Constant Field Values
-
INSTALL_SHARED_SESSION_MANAGER
public static final int INSTALL_SHARED_SESSION_MANAGER
- See Also:
- Constant Field Values
-
INSTALL_JACC_POLICY
public static final int INSTALL_JACC_POLICY
- See Also:
- Constant Field Values
-
INSTALL_VIRTUAL_SECURITY_DOMAIN
public static final int INSTALL_VIRTUAL_SECURITY_DOMAIN
- See Also:
- Constant Field Values
-
INSTALL_COMPONENT_AGGREGATION
public static final int INSTALL_COMPONENT_AGGREGATION
- See Also:
- Constant Field Values
-
INSTALL_RESOLVE_MESSAGE_DESTINATIONS
public static final int INSTALL_RESOLVE_MESSAGE_DESTINATIONS
- See Also:
- Constant Field Values
-
INSTALL_EJB_CLIENT_CONTEXT
public static final int INSTALL_EJB_CLIENT_CONTEXT
- See Also:
- Constant Field Values
-
INSTALL_EJB_JACC_PROCESSING
public static final int INSTALL_EJB_JACC_PROCESSING
- See Also:
- Constant Field Values
-
INSTALL_SERVICE_ACTIVATOR
public static final int INSTALL_SERVICE_ACTIVATOR
- See Also:
- Constant Field Values
-
INSTALL_RESOLVER_MODULE
public static final int INSTALL_RESOLVER_MODULE
- See Also:
- Constant Field Values
-
INSTALL_RA_NATIVE
public static final int INSTALL_RA_NATIVE
- See Also:
- Constant Field Values
-
INSTALL_RA_DEPLOYMENT
public static final int INSTALL_RA_DEPLOYMENT
- See Also:
- Constant Field Values
-
INSTALL_CONNECTION_FACTORY_DEFINITION_ANNOTATION
public static final int INSTALL_CONNECTION_FACTORY_DEFINITION_ANNOTATION
- See Also:
- Constant Field Values
-
INSTALL_ADMIN_OBJECT_DEFINITION_ANNOTATION
public static final int INSTALL_ADMIN_OBJECT_DEFINITION_ANNOTATION
- See Also:
- Constant Field Values
-
INSTALL_SERVICE_DEPLOYMENT
public static final int INSTALL_SERVICE_DEPLOYMENT
- See Also:
- Constant Field Values
-
INSTALL_POJO_DEPLOYMENT
public static final int INSTALL_POJO_DEPLOYMENT
- See Also:
- Constant Field Values
-
INSTALL_RA_XML_DEPLOYMENT
public static final int INSTALL_RA_XML_DEPLOYMENT
- See Also:
- Constant Field Values
-
INSTALL_EE_MODULE_CONFIG
public static final int INSTALL_EE_MODULE_CONFIG
- See Also:
- Constant Field Values
-
INSTALL_DEFAULT_BINDINGS_JMS_CONNECTION_FACTORY
public static final int INSTALL_DEFAULT_BINDINGS_JMS_CONNECTION_FACTORY
- See Also:
- Constant Field Values
-
INSTALL_DEFAULT_BINDINGS_EE_CONCURRENCY
public static final int INSTALL_DEFAULT_BINDINGS_EE_CONCURRENCY
- See Also:
- Constant Field Values
-
INSTALL_DEFAULT_BINDINGS_DATASOURCE
public static final int INSTALL_DEFAULT_BINDINGS_DATASOURCE
- See Also:
- Constant Field Values
-
INSTALL_MODULE_JNDI_BINDINGS
public static final int INSTALL_MODULE_JNDI_BINDINGS
- See Also:
- Constant Field Values
-
INSTALL_DEPENDS_ON_ANNOTATION
public static final int INSTALL_DEPENDS_ON_ANNOTATION
- See Also:
- Constant Field Values
-
INSTALL_PERSISTENTUNIT
public static final int INSTALL_PERSISTENTUNIT
- See Also:
- Constant Field Values
-
INSTALL_EE_COMPONENT
public static final int INSTALL_EE_COMPONENT
- See Also:
- Constant Field Values
-
INSTALL_SERVLET_INIT_DEPLOYMENT
public static final int INSTALL_SERVLET_INIT_DEPLOYMENT
- See Also:
- Constant Field Values
-
INSTALL_JAXRS_DEPLOYMENT
public static final int INSTALL_JAXRS_DEPLOYMENT
- See Also:
- Constant Field Values
-
INSTALL_JSF_ANNOTATIONS
public static final int INSTALL_JSF_ANNOTATIONS
- See Also:
- Constant Field Values
-
INSTALL_JSF_VALIDATOR_FACTORY
public static final int INSTALL_JSF_VALIDATOR_FACTORY
- See Also:
- Constant Field Values
-
INSTALL_JDBC_DRIVER
public static final int INSTALL_JDBC_DRIVER
- See Also:
- Constant Field Values
-
INSTALL_TRANSACTION_BINDINGS
public static final int INSTALL_TRANSACTION_BINDINGS
- See Also:
- Constant Field Values
-
INSTALL_WELD_DEPLOYMENT
public static final int INSTALL_WELD_DEPLOYMENT
- See Also:
- Constant Field Values
-
INSTALL_WELD_BEAN_MANAGER
public static final int INSTALL_WELD_BEAN_MANAGER
- See Also:
- Constant Field Values
-
INSTALL_JNDI_DEPENDENCIES
public static final int INSTALL_JNDI_DEPENDENCIES
- See Also:
- Constant Field Values
-
INSTALL_CDI_VALIDATOR_FACTORY
public static final int INSTALL_CDI_VALIDATOR_FACTORY
- See Also:
- Constant Field Values
-
INSTALL_WS_UNIVERSAL_META_DATA_MODEL
public static final int INSTALL_WS_UNIVERSAL_META_DATA_MODEL
- See Also:
- Constant Field Values
-
INSTALL_WS_DEPLOYMENT_ASPECTS
public static final int INSTALL_WS_DEPLOYMENT_ASPECTS
- See Also:
- Constant Field Values
-
INSTALL_WEB_RESOLVE_SECURITY_DOMAIN
public static final int INSTALL_WEB_RESOLVE_SECURITY_DOMAIN
- See Also:
- Constant Field Values
-
INSTALL_WAR_DEPLOYMENT
public static final int INSTALL_WAR_DEPLOYMENT
- See Also:
- Constant Field Values
-
INSTALL_WAB_DEPLOYMENT
@Deprecated public static final int INSTALL_WAB_DEPLOYMENT
Deprecated.there is no phase processing associated with this constant - it was used for OSGi integration- See Also:
- Constant Field Values
-
INSTALL_DEPLOYMENT_REPOSITORY
public static final int INSTALL_DEPLOYMENT_REPOSITORY
- See Also:
- Constant Field Values
-
INSTALL_EJB_MANAGEMENT_RESOURCES
public static final int INSTALL_EJB_MANAGEMENT_RESOURCES
- See Also:
- Constant Field Values
-
INSTALL_APPLICATION_CLIENT
public static final int INSTALL_APPLICATION_CLIENT
- See Also:
- Constant Field Values
-
INSTALL_CACHE_DEPENDENCIES
public static final int INSTALL_CACHE_DEPENDENCIES
- See Also:
- Constant Field Values
-
INSTALL_MESSAGING_XML_RESOURCES
public static final int INSTALL_MESSAGING_XML_RESOURCES
- See Also:
- Constant Field Values
-
INSTALL_MDB_DELIVERY_DEPENDENCIES
public static final int INSTALL_MDB_DELIVERY_DEPENDENCIES
- See Also:
- Constant Field Values
-
INSTALL_BUNDLE_ACTIVATE
@Deprecated public static final int INSTALL_BUNDLE_ACTIVATE
Deprecated.there is no phase processing associated with this constant - it was used for OSGi integration- See Also:
- Constant Field Values
-
INSTALL_WAB_SERVLETCONTEXT_SERVICE
@Deprecated public static final int INSTALL_WAB_SERVLETCONTEXT_SERVICE
Deprecated.there is no phase processing associated with this constant - it was used for OSGi integration- See Also:
- Constant Field Values
-
INSTALL_PERSISTENCE_SERVICES
public static final int INSTALL_PERSISTENCE_SERVICES
- See Also:
- Constant Field Values
-
INSTALL_BATCH_RESOURCES
public static final int INSTALL_BATCH_RESOURCES
- See Also:
- Constant Field Values
-
INSTALL_LOGGING_DEPLOYMENT_RESOURCES
public static final int INSTALL_LOGGING_DEPLOYMENT_RESOURCES
- See Also:
- Constant Field Values
-
INSTALL_DEPLOYMENT_COMPLETE_SERVICE
public static final int INSTALL_DEPLOYMENT_COMPLETE_SERVICE
- See Also:
- Constant Field Values
-
INSTALL_IIOP_CLEAR_CACHES
public static final int INSTALL_IIOP_CLEAR_CACHES
- See Also:
- Constant Field Values
-
CLEANUP_REFLECTION_INDEX
public static final int CLEANUP_REFLECTION_INDEX
- See Also:
- Constant Field Values
-
CLEANUP_EE
public static final int CLEANUP_EE
- See Also:
- Constant Field Values
-
CLEANUP_EJB
public static final int CLEANUP_EJB
- See Also:
- Constant Field Values
-
CLEANUP_ANNOTATION_INDEX
public static final int CLEANUP_ANNOTATION_INDEX
- See Also:
- Constant Field Values
-
CLEANUP_BATCH
public static final int CLEANUP_BATCH
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static Phase[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Phase c : Phase.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Phase valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException- if the argument is null
-
next
public Phase next()
Get the next phase, ornullif none.- Returns:
- the next phase, or
nullif there is none
-
getPhaseKey
public AttachmentKey<?> getPhaseKey()
Get the attachment key of theDeploymentUnitattachment that represents the result value of this phase.- Returns:
- the key
-
-