org.jboss.as.server.deployment.Phase Maven / Gradle / Ivy
/*
* JBoss, Home of Professional Open Source.
* Copyright 2010, Red Hat, Inc., and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.jboss.as.server.deployment;
/**
* An enumeration of the phases of a deployment unit's processing cycle.
*
* @author David M. Lloyd
*/
public enum Phase {
/* == TEMPLATE ==
* Upon entry, this phase performs the following actions:
*
*
*
*
* Processors in this phase have access to the following phase attachments:
*
* - {@link 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:
*
* - {@link Attachments#BLAH} - description here
*
*
* In this phase, these phase attachments may be modified:
*
* - {@link Attachments#BLAH} - description here
*
*
*/
/**
* 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 {@link #STRUCTURE_MOUNT})
* - Other internal deployment roots are mounted (during {@link #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:
*
* - {@link Attachments#DEPLOYMENT_ROOT} - the mounted deployment root for this deployment unit
*
*
* In this phase, these phase attachments may be modified:
*
*
*
*/
STRUCTURE(null),
/**
* 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 {@link #PARSE_MANIFEST}.
* - The annotation index for the root structure is calculated during {@link #STRUCTURE_ANNOTATION_INDEX}.
*
*
* Processors in this phase have access to the following phase attachments:
*
* - {@link 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:
*
* - {@link Attachments#CLASS_PATH_ENTRIES} - class path entries found in the manifest and elsewhere.
* - {@link Attachments#EXTENSION_LIST_ENTRIES} - extension-list entries found in the manifest and elsewhere.
*
*
*/
PARSE(null),
/**
* In this phase parsing of deployment metadata is complete and the component may be registered with the subsystem.
* This is prior to working out the components dependency and equivalent to the OSGi INSTALL life cycle.
*/
REGISTER(null),
/**
* 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 {@link #XXX}
*
*
*
* Processors in this phase have access to the following phase attachments:
*
* - {@link 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:
*
* - {@link Attachments#BLAH} - description here
*
*
* In this phase, these phase attachments may be modified:
*
* - {@link Attachments#BLAH} - description here
*
*
*/
DEPENDENCIES(null),
CONFIGURE_MODULE(null),
/**
* Processors that need to start/complete before the deployment classloader is used to load application classes,
* belong in the FIRST_MODULE_USE phase.
*/
FIRST_MODULE_USE(null),
POST_MODULE(null),
INSTALL(null),
CLEANUP(null),
;
/**
* This is the key for the attachment to use as the phase's "value". The attachment is taken from
* the deployment unit. If a phase doesn't have a single defining "value", {@code null} is specified.
*/
private final AttachmentKey> phaseKey;
private Phase(final AttachmentKey> key) {
phaseKey = key;
}
/**
* Get the next phase, or {@code null} if none.
*
* @return the next phase, or {@code null} if there is none
*/
public Phase next() {
final int ord = ordinal() + 1;
final Phase[] phases = Phase.values();
return ord == phases.length ? null : phases[ord];
}
/**
* Get the attachment key of the {@code DeploymentUnit} attachment that represents the result value
* of this phase.
*
* @return the key
*/
public AttachmentKey> getPhaseKey() {
return phaseKey;
}
// STRUCTURE
public static final int STRUCTURE_EXPLODED_MOUNT = 0x0100;
public static final int STRUCTURE_MOUNT = 0x0200;
public static final int STRUCTURE_DEPLOYMENT_OVERLAY = 0x0280;
public static final int STRUCTURE_MANIFEST = 0x0300;
public static final int STRUCTURE_OSGI_MANIFEST = 0x0400;
public static final int STRUCTURE_OSGI_PROPERTIES = 0x0410;
public static final int STRUCTURE_OSGI_WEBBUNDLE = 0x0420;
public static final int STRUCTURE_OSGI_METADATA = 0x0430;
public static final int STRUCTURE_REMOUNT_EXPLODED = 0x0450;
public static final int STRUCTURE_EE_SPEC_DESC_PROPERTY_REPLACEMENT = 0x0500;
public static final int STRUCTURE_EE_JBOSS_DESC_PROPERTY_REPLACEMENT= 0x0550;
public static final int STRUCTURE_EE_EJB_ANNOTATION_PROPERTY_REPLACEMENT = 0x0555;
public static final int STRUCTURE_EE_DEPLOYMENT_PROPERTIES = 0x0560;
public static final int STRUCTURE_EE_DEPLOYMENT_PROPERTY_RESOLVER = 0x0561;
public static final int STRUCTURE_EE_VAULT_PROPERTY_RESOLVER = 0x0562;
public static final int STRUCTURE_EE_SYSTEM_PROPERTY_RESOLVER = 0x0563;
public static final int STRUCTURE_EE_PROPERTY_RESOLVER = 0x0564;
public static final int STRUCTURE_JDBC_DRIVER = 0x0600;
public static final int STRUCTURE_RAR = 0x0700;
public static final int STRUCTURE_WAR_DEPLOYMENT_INIT = 0x0800;
public static final int STRUCTURE_WAR = 0x0900;
public static final int STRUCTURE_EAR_DEPLOYMENT_INIT = 0x0A00;
public static final int STRUCTURE_REGISTER_JBOSS_ALL_APPCLIENT = 0x0A10;
public static final int STRUCTURE_REGISTER_JBOSS_ALL_EE_APP = 0x0A11;
public static final int STRUCTURE_REGISTER_JBOSS_ALL_EJB = 0x0A12;
public static final int STRUCTURE_REGISTER_JBOSS_ALL_JPA = 0x0A13;
public static final int STRUCTURE_REGISTER_JBOSS_ALL_WEB = 0x0A14;
public static final int STRUCTURE_REGISTER_JBOSS_ALL_DEPLOYMENT_DEPS= 0x0A15;
public static final int STRUCTURE_REGISTER_JBOSS_ALL_STRUCTURE_1_0 = 0x0A16;
public static final int STRUCTURE_REGISTER_JBOSS_ALL_STRUCTURE_1_1 = 0x0A17;
public static final int STRUCTURE_REGISTER_JBOSS_ALL_STRUCTURE_1_2 = 0x0A18;
public static final int STRUCTURE_REGISTER_JBOSS_ALL_WELD = 0x0A19;
public static final int STRUCTURE_REGISTER_JBOSS_ALL_UNDERTOW_SHARED_SESSION = 0x0A1A;
public static final int STRUCTURE_PARSE_JBOSS_ALL_XML = 0x0AE0;
public static final int STRUCTURE_EAR_APP_XML_PARSE = 0x0B00;
public static final int STRUCTURE_JBOSS_EJB_CLIENT_XML_PARSE = 0x0C00;
public static final int STRUCTURE_EJB_EAR_APPLICATION_NAME = 0x0D00;
public static final int STRUCTURE_EAR = 0x0E00;
public static final int STRUCTURE_APP_CLIENT = 0x0F00;
public static final int STRUCTURE_SERVICE_MODULE_LOADER = 0x1000;
public static final int STRUCTURE_ANNOTATION_INDEX = 0x1100;
public static final int STRUCTURE_EJB_JAR_IN_EAR = 0x1200;
public static final int STRUCTURE_APPLICATION_CLIENT_IN_EAR = 0x1300;
public static final int STRUCTURE_MANAGED_BEAN_JAR_IN_EAR = 0x1400;
public static final int STRUCTURE_BUNDLE_SUB_DEPLOYMENT = 0x1450;
public static final int STRUCTURE_SAR_SUB_DEPLOY_CHECK = 0x1500;
public static final int STRUCTURE_SAR = 0x1580;
public static final int STRUCTURE_ADDITIONAL_MANIFEST = 0x1600;
public static final int STRUCTURE_SUB_DEPLOYMENT = 0x1700;
public static final int STRUCTURE_EAR_SUB_DEPLYOMENTS_ISOLATED = 0x1800;
public static final int STRUCTURE_JBOSS_DEPLOYMENT_STRUCTURE = 0x1880;
public static final int STRUCTURE_CLASS_PATH = 0x1900;
public static final int STRUCTURE_MODULE_IDENTIFIERS = 0x1A00;
public static final int STRUCTURE_EE_MODULE_INIT = 0x1B00;
public static final int STRUCTURE_EE_RESOURCE_INJECTION_REGISTRY = 0x1C00;
public static final int STRUCTURE_DATASOURCE_RESOURCE_INJECTION = 0x1C01;
public static final int STRUCTURE_JMS_CONNECTION_FACTORY_RESOURCE_INJECTION = 0x1C02;
public static final int STRUCTURE_DEPLOYMENT_DEPENDENCIES = 0x1D00;
public static final int STRUCTURE_GLOBAL_MODULES = 0x1E00;
public static final int STRUCTURE_NAMING_EXTERNAL_CONTEXTS = 0x1F00;
// PARSE
public static final int PARSE_EE_MODULE_NAME = 0x0100;
public static final int PARSE_EJB_DEFAULT_DISTINCT_NAME = 0x0110;
public static final int PARSE_EAR_SUBDEPLOYMENTS_ISOLATION_DEFAULT = 0x0200;
public static final int PARSE_DEPENDENCIES_MANIFEST = 0x0300;
public static final int PARSE_COMPOSITE_ANNOTATION_INDEX = 0x0301;
public static final int PARSE_EXTENSION_LIST = 0x0700;
public static final int PARSE_EXTENSION_NAME = 0x0800;
public static final int PARSE_OSGI_BUNDLE_INFO = 0x0900;
public static final int PARSE_WEB_DEPLOYMENT = 0x0B00;
public static final int PARSE_WEB_DEPLOYMENT_FRAGMENT = 0x0C00;
public static final int PARSE_JSF_VERSION = 0x0C50;
public static final int PARSE_JSF_SHARED_TLDS = 0x0C51;
public static final int PARSE_ANNOTATION_WAR = 0x0D00;
public static final int PARSE_ANNOTATION_EJB = 0x0D10;
public static final int PARSE_JBOSS_WEB_DEPLOYMENT = 0x0E00;
public static final int PARSE_TLD_DEPLOYMENT = 0x0F00;
public static final int PARSE_EAR_CONTEXT_ROOT = 0x1000;
// create and attach EJB metadata for EJB deployments
public static final int PARSE_EJB_DEPLOYMENT = 0x1100;
public static final int PARSE_APP_CLIENT_XML = 0x1101;
public static final int PARSE_CREATE_COMPONENT_DESCRIPTIONS = 0x1150;
// described EJBs must be created after annotated EJBs
public static final int PARSE_ENTITY_BEAN_CREATE_COMPONENT_DESCRIPTIONS = 0x1152;
public static final int PARSE_CMP_ENTITY_BEAN_CREATE_COMPONENT_DESCRIPTIONS = 0x1153;
public static final int PARSE_EJB_SESSION_BEAN_DD = 0x1200;
// create and attach the component description out of EJB annotations
public static final int PARSE_EJB_APPLICATION_EXCEPTION_ANNOTATION = 0x1901;
public static final int PARSE_WELD_CONFIGURATION = 0x1C01;
public static final int PARSE_WEB_COMPONENTS = 0x1F00;
public static final int PARSE_WEB_MERGE_METADATA = 0x2000;
public static final int PARSE_OSGI_COMPONENTS = 0x2010;
public static final int PARSE_WEBSERVICES_CONTEXT_INJECTION = 0x2040;
public static final int PARSE_WEBSERVICES_LIBRARY_FILTER = 0x2045;
public static final int PARSE_WEBSERVICES_XML = 0x2049;
public static final int PARSE_JBOSS_WEBSERVICES_XML = 0x2050;
public static final int PARSE_WEBSERVICES_ANNOTATION = 0x2051;
public static final int PARSE_JAXWS_EJB_INTEGRATION = 0x2052;
public static final int PARSE_JAXRPC_POJO_INTEGRATION = 0x2053;
public static final int PARSE_JAXRPC_EJB_INTEGRATION = 0x2054;
public static final int PARSE_JAXWS_HANDLER_CHAIN_ANNOTATION = 0x2055;
public static final int PARSE_WS_JMS_INTEGRATION = 0x2056;
public static final int PARSE_XTS_SOAP_HANDLERS = 0x2057;
public static final int PARSE_JAXWS_ENDPOINT_CREATE_COMPONENT_DESCRIPTIONS = 0x2058;
public static final int PARSE_XTS_COMPONENT_INTERCEPTORS = 0x2059;
public static final int PARSE_JAXWS_HANDLER_CREATE_COMPONENT_DESCRIPTIONS = 0x2060;
public static final int PARSE_RA_DEPLOYMENT = 0x2100;
public static final int PARSE_SERVICE_LOADER_DEPLOYMENT = 0x2200;
public static final int PARSE_SERVICE_DEPLOYMENT = 0x2300;
public static final int PARSE_POJO_DEPLOYMENT = 0x2400;
public static final int PARSE_IRON_JACAMAR_DEPLOYMENT = 0x2500;
public static final int PARSE_MANAGED_BEAN_ANNOTATION = 0x2900;
public static final int PARSE_EE_ANNOTATIONS = 0x2901;
public static final int PARSE_JAXRS_ANNOTATIONS = 0x2A00;
public static final int PARSE_CDI_ANNOTATIONS = 0x2A10;
public static final int PARSE_CDI_BEAN_DEFINING_ANNOTATIONS = 0x2A80;
public static final int PARSE_WELD_DEPLOYMENT = 0x2B00;
public static final int PARSE_WELD_IMPLICIT_DEPLOYMENT_DETECTION = 0x2C00;
public static final int PARSE_DATA_SOURCE_DEFINITION_ANNOTATION = 0x2D00;
public static final int PARSE_MAIL_SESSION_DEFINITION_ANNOTATION = 0x2D01;
public static final int PARSE_EJB_CONTEXT_BINDING = 0x2E00;
public static final int PARSE_EJB_TIMERSERVICE_BINDING = 0x2E01;
public static final int PARSE_PERSISTENCE_UNIT = 0x2F00;
public static final int PARSE_PERMISSIONS = 0x3100;
public static final int PARSE_LIFECYCLE_ANNOTATION = 0x3200;
public static final int PARSE_PASSIVATION_ANNOTATION = 0x3250;
public static final int PARSE_AROUNDINVOKE_ANNOTATION = 0x3300;
public static final int PARSE_AROUNDTIMEOUT_ANNOTATION = 0x3400;
public static final int PARSE_TIMEOUT_ANNOTATION = 0x3401;
public static final int PARSE_EJB_DD_INTERCEPTORS = 0x3500;
public static final int PARSE_EJB_SECURITY_ROLE_REF_DD = 0x3501;
public static final int PARSE_EJB_ASSEMBLY_DESC_DD = 0x3600;
public static final int PARSE_DISTINCT_NAME = 0x3601;
public static final int PARSE_OSGI_DEPLOYMENT = 0x3700;
public static final int PARSE_OSGI_SUBSYSTEM_ACTIVATOR = 0x3800;
public static final int PARSE_WAB_CONTEXT_FACTORY = 0x3900;
// should be after all components are known
public static final int PARSE_EJB_INJECTION_ANNOTATION = 0x4000;
public static final int PARSE_JACORB = 0x4100;
public static final int PARSE_TRANSACTION_ROLLBACK_ACTION = 0x4200;
public static final int PARSE_EAR_MESSAGE_DESTINATIONS = 0x4400;
public static final int PARSE_DSXML_DEPLOYMENT = 0x4500;
public static final int PARSE_MESSAGING_XML_RESOURCES = 0x4600;
public static final int PARSE_DESCRIPTOR_LIFECYCLE_METHOD_RESOLUTION = 0x4700;
public static final int PARSE_EE_CONCURRENT_DEFAULT_CONTEXT_SERVICE = 0x4800;
public static final int PARSE_EE_CONCURRENT_DEFAULT_MANAGED_THREAD_FACTORY = 0x4801;
public static final int PARSE_EE_CONCURRENT_DEFAULT_MANAGED_EXECUTOR_SERVICE = 0x4802;
public static final int PARSE_EE_CONCURRENT_DEFAULT_MANAGED_SCHEDULED_EXECUTOR_SERVICE = 0x4803;
public static final int PARSE_EE_DEFAULT_BINDINGS_CONFIG = 0x4880;
public static final int PARSE_JSF_MANAGED_BEANS = 0x4900;
public static final int PARSE_JSF_METADATA = 0x4A00;
// REGISTER
public static final int REGISTER_BUNDLE_INSTALL = 0x0100;
// DEPENDENCIES
public static final int DEPENDENCIES_EE_PERMISSIONS = 0x0100;
public static final int DEPENDENCIES_EJB_PERMISSIONS = 0x0110;
public static final int DEPENDENCIES_EJB = 0x0200;
public static final int DEPENDENCIES_MODULE = 0x0300;
public static final int DEPENDENCIES_RAR_CONFIG = 0x0400;
public static final int DEPENDENCIES_MANAGED_BEAN = 0x0500;
public static final int DEPENDENCIES_SAR_MODULE = 0x0600;
public static final int DEPENDENCIES_WAR_MODULE = 0x0700;
public static final int DEPENDENCIES_CLASS_PATH = 0x0800;
public static final int DEPENDENCIES_EXTENSION_LIST = 0x0900;
public static final int DEPENDENCIES_WELD = 0x0A00;
public static final int DEPENDENCIES_SEAM = 0x0A01;
public static final int DEPENDENCIES_WS = 0x0C00;
public static final int DEPENDENCIES_SECURITY = 0x0C50;
public static final int DEPENDENCIES_JAXRS = 0x0D00;
public static final int DEPENDENCIES_JAXRS_SPRING = 0x0D80;
public static final int DEPENDENCIES_SUB_DEPLOYMENTS = 0x0E00;
public static final int DEPENDENCIES_PERSISTENCE_ANNOTATION = 0x0F00;
public static final int DEPENDENCIES_JPA = 0x1000;
public static final int DEPENDENCIES_TRANSACTIONS = 0x1100;
public static final int DEPENDENCIES_XTS = 0x1110;
public static final int DEPENDENCIES_JDK = 0x1200;
public static final int DEPENDENCIES_JACORB = 0x1300;
public static final int DEPENDENCIES_JMS = 0x1400;
public static final int DEPENDENCIES_CMP = 0x1500;
public static final int DEPENDENCIES_JAXR = 0x1600;
public static final int DEPENDENCIES_DRIVERS = 0x1700;
public static final int DEPENDENCIES_JSF = 0x1800;
public static final int DEPENDENCIES_BUNDLE = 0x1900;
public static final int DEPENDENCIES_BUNDLE_CONTEXT_BINDING = 0x1A00;
public static final int DEPENDENCIES_BATCH = 0x1B00;
public static final int DEPENDENCIES_CLUSTERING = 0x1C00;
public static final int DEPENDENCIES_LOGGING = 0x1D00;
//these must be last, and in this specific order
public static final int DEPENDENCIES_APPLICATION_CLIENT = 0x2000;
public static final int DEPENDENCIES_VISIBLE_MODULES = 0x2100;
public static final int DEPENDENCIES_EE_CLASS_DESCRIPTIONS = 0x2200;
// CONFIGURE_MODULE
public static final int CONFIGURE_RESOLVE_BUNDLE = 0x0100;
public static final int CONFIGURE_MODULE_SPEC = 0x0200;
public static final int CONFIGURE_DEFERRED_PHASE = 0x0300;
// FIRST_MODULE_USE
public static final int FIRST_MODULE_USE_PERSISTENCE_CLASS_FILE_TRANSFORMER = 0x0100; // need to be before POST_MODULE_REFLECTION_INDEX
// and anything that could load class definitions
public static final int FIRST_MODULE_USE_INTERCEPTORS = 0x0200;
public static final int FIRST_MODULE_USE_PERSISTENCE_PREPARE = 0x0300;
public static final int FIRST_MODULE_USE_DSXML_DEPLOYMENT = 0x0400;
public static final int FIRST_MODULE_USE_TRANSFORMER = 0x0500;
// POST_MODULE
public static final int POST_MODULE_INJECTION_ANNOTATION = 0x0100;
public static final int POST_MODULE_REFLECTION_INDEX = 0x0200;
public static final int POST_MODULE_WAB_FRAGMENTS = 0x0250;
public static final int POST_MODULE_JSF_MANAGED_BEANS = 0x0300;
public static final int POST_MODULE_INTERCEPTOR_ANNOTATIONS = 0x0301;
public static final int POST_MODULE_JSF_CDI_EXTENSIONS = 0x0302;
public static final int POST_MODULE_EJB_DEFAULT_SECURITY_DOMAIN = 0x2E02;
public static final int POST_MODULE_EJB_BUSINESS_VIEW_ANNOTATION = 0x0400;
public static final int POST_MODULE_EJB_HOME_MERGE = 0x0401;
public static final int POST_MODULE_EJB_DD_METHOD_RESOLUTION = 0x0402;
public static final int POST_MODULE_EJB_TIMER_METADATA_MERGE = 0x0506;
public static final int POST_MODULE_EJB_SLSB_POOL_NAME_MERGE = 0x0507;
public static final int POST_MODULE_EJB_MDB_POOL_NAME_MERGE = 0x0508;
public static final int POST_MODULE_EJB_ENTITY_POOL_NAME_MERGE = 0x0509;
public static final int POST_MODULE_EJB_USER_APP_SPECIFIC_CONTAINER_INTERCEPTORS = 0x050A;
public static final int POST_MODULE_EJB_DD_INTERCEPTORS = 0x0600;
public static final int POST_MODULE_EJB_TIMER_SERVICE = 0x0601;
public static final int POST_MODULE_EJB_TRANSACTION_MANAGEMENT = 0x0602;
public static final int POST_MODULE_EJB_TX_ATTR_MERGE = 0x0603;
public static final int POST_MODULE_EJB_CONCURRENCY_MANAGEMENT_MERGE= 0x0604;
public static final int POST_MODULE_EJB_CONCURRENCY_MERGE = 0x0605;
public static final int POST_MODULE_EJB_RUN_AS_MERGE = 0x0606;
public static final int POST_MODULE_EJB_RESOURCE_ADAPTER_MERGE = 0x0607;
public static final int POST_MODULE_EJB_REMOVE_METHOD = 0x0608;
public static final int POST_MODULE_EJB_STARTUP_MERGE = 0x0609;
public static final int POST_MODULE_EJB_SECURITY_DOMAIN = 0x060A;
public static final int POST_MODULE_EJB_ROLES = 0x060B;
public static final int POST_MODULE_METHOD_PERMISSIONS = 0x060C;
public static final int POST_MODULE_EJB_STATEFUL_TIMEOUT = 0x060D;
public static final int POST_MODULE_EJB_ASYNCHRONOUS_MERGE = 0x060E;
public static final int POST_MODULE_EJB_SESSION_SYNCHRONIZATION = 0x060F;
public static final int POST_MODULE_EJB_INIT_METHOD = 0x0610;
public static final int POST_MODULE_EJB_SESSION_BEAN = 0x0611;
public static final int POST_MODULE_EJB_SECURITY_PRINCIPAL_ROLE_MAPPING_MERGE = 0x0612;
public static final int POST_MODULE_EJB_SECURITY_MISSING_METHOD_PERMISSIONS = 0x0613;
public static final int POST_MODULE_EJB_CACHE = 0x0614;
public static final int POST_MODULE_EJB_CLUSTERED = 0x0615;
public static final int POST_MODULE_EJB_DELIVERY_ACTIVE_MERGE = 0x0616;
public static final int POST_MODULE_WELD_WEB_INTEGRATION = 0x0700;
public static final int POST_MODULE_WELD_COMPONENT_INTEGRATION = 0x0800;
public static final int POST_MODULE_INSTALL_EXTENSION = 0x0A00;
public static final int POST_MODULE_VALIDATOR_FACTORY = 0x0B00;
public static final int POST_MODULE_EAR_DEPENDENCY = 0x0C00;
public static final int POST_MODULE_WELD_BEAN_ARCHIVE = 0x0D00;
public static final int POST_MODULE_WELD_EXTERNAL_BEAN_ARCHIVE = 0x0D50;
public static final int POST_MODULE_WELD_PORTABLE_EXTENSIONS = 0x0E00;
public static final int POST_MODULE_XTS_PORTABLE_EXTENSIONS = 0x0E10;
public static final int POST_MODULE_JMS_CDI_EXTENSIONS = 0x0F00;
public static final int POST_MODULE_JMS_DEFINITION_DEPLOYMENT = 0x0F80;
// should come before ejb jndi bindings processor
public static final int POST_MODULE_EJB_IMPLICIT_NO_INTERFACE_VIEW = 0x1000;
public static final int POST_MODULE_EJB_JNDI_BINDINGS = 0x1100;
public static final int POST_MODULE_EJB_CLIENT_METADATA = 0x1102;
public static final int POST_MODULE_EJB_APPLICATION_EXCEPTIONS = 0x1200;
public static final int POST_INITIALIZE_IN_ORDER = 0x1300;
public static final int POST_MODULE_ENV_ENTRY = 0x1400;
public static final int POST_MODULE_EJB_REF = 0x1500;
public static final int POST_MODULE_PERSISTENCE_REF = 0x1600;
public static final int POST_MODULE_DATASOURCE_REF = 0x1700;
public static final int POST_MODULE_MAIL_SESSION_REF = 0x1701;
public static final int POST_MODULE_WS_REF_DESCRIPTOR = 0x1800;
public static final int POST_MODULE_WS_REF_ANNOTATION = 0x1801;
public static final int POST_MODULE_WS_VERIFICATION = 0x1880;
public static final int POST_MODULE_JAXRS_SCANNING = 0x1A00;
public static final int POST_MODULE_JAXRS_COMPONENT = 0x1B00;
public static final int POST_MODULE_JAXRS_CDI_INTEGRATION = 0x1C00;
public static final int POST_MODULE_RTS_PROVIDERS = 0x1D00;
public static final int POST_MODULE_LOCAL_HOME = 0x1E00;
public static final int POST_MODULE_APPLICATION_CLIENT_MANIFEST = 0x1F00;
public static final int POST_MODULE_APPLICATION_CLIENT_ACTIVE = 0x2000;
public static final int POST_MODULE_EJB_ORB_BIND = 0x2100;
public static final int POST_MODULE_CMP_PARSE = 0x2300;
public static final int POST_MODULE_CMP_ENTITY_METADATA = 0x2400;
public static final int POST_MODULE_CMP_STORE_MANAGER = 0x2500;
public static final int POST_MODULE_EJB_IIOP = 0x2600;
public static final int POST_MODULE_POJO = 0x2700;
public static final int POST_MODULE_IN_APP_CLIENT = 0x2780;
public static final int POST_MODULE_EE_INSTANCE_NAME = 0x2790;
public static final int POST_MODULE_NAMING_CONTEXT = 0x2800;
public static final int POST_MODULE_APP_NAMING_CONTEXT = 0x2900;
public static final int POST_MODULE_CACHED_CONNECTION_MANAGER = 0x2A00;
public static final int POST_MODULE_LOGGING_CONFIG = 0x2B00;
public static final int POST_MODULE_LOGGING_PROFILE = 0x2B10;
public static final int POST_MODULE_EL_EXPRESSION_FACTORY = 0x2C00;
public static final int POST_MODULE_SAR_SERVICE_COMPONENT = 0x2D00;
public static final int POST_MODULE_UNDERTOW_WEBSOCKETS = 0x2E00;
public static final int POST_MODULE_UNDERTOW_HANDLERS = 0x2F00;
public static final int POST_MODULE_EE_CONCURRENT_CONTEXT = 0x3000;
public static final int POST_MODULE_BATCH_ENVIRONMENT = 0x3100;
public static final int POST_MODULE_WS_SERVICES_DEPS = 0x3200;
public static final int POST_MODULE_RAR_SERVICES_DEPS = 0x3300;
public static final int POST_MODULE_UNDERTOW_MODCLUSTER = 0x3400;
// INSTALL
public static final int INSTALL_SHARED_SESSION_MANAGER = 0x0100;
public static final int INSTALL_JACC_POLICY = 0x0350;
public static final int INSTALL_COMPONENT_AGGREGATION = 0x0400;
public static final int INSTALL_RESOLVE_MESSAGE_DESTINATIONS = 0x0403;
public static final int INSTALL_EJB_CLIENT_CONTEXT = 0x0404;
public static final int INSTALL_EJB_JACC_PROCESSING = 0x1105;
public static final int INSTALL_SERVICE_ACTIVATOR = 0x0500;
public static final int INSTALL_RESOLVER_MODULE = 0x0600;
public static final int INSTALL_RA_NATIVE = 0x0800;
public static final int INSTALL_RA_DEPLOYMENT = 0x0801;
public static final int INSTALL_CONNECTION_FACTORY_DEFINITION_ANNOTATION = 0x0802;
public static final int INSTALL_ADMIN_OBJECT_DEFINITION_ANNOTATION = 0x0803;
public static final int INSTALL_SERVICE_DEPLOYMENT = 0x0900;
public static final int INSTALL_POJO_DEPLOYMENT = 0x0A00;
public static final int INSTALL_RA_XML_DEPLOYMENT = 0x0B00;
public static final int INSTALL_EE_MODULE_CONFIG = 0x1101;
public static final int INSTALL_DEFAULT_BINDINGS_JMS_CONNECTION_FACTORY = 0x1150;
public static final int INSTALL_DEFAULT_BINDINGS_EE_CONCURRENCY = 0x1151;
public static final int INSTALL_DEFAULT_BINDINGS_DATASOURCE = 0x1152;
public static final int INSTALL_MODULE_JNDI_BINDINGS = 0x1200;
public static final int INSTALL_DEPENDS_ON_ANNOTATION = 0x1210;
public static final int INSTALL_PERSISTENTUNIT = 0x1220;
public static final int INSTALL_EE_COMPONENT = 0x1230;
public static final int INSTALL_SERVLET_INIT_DEPLOYMENT = 0x1300;
public static final int INSTALL_JAXRS_DEPLOYMENT = 0x1500;
public static final int INSTALL_JSF_ANNOTATIONS = 0x1600;
public static final int INSTALL_JSF_VALIDATOR_FACTORY = 0x1700;
public static final int INSTALL_JDBC_DRIVER = 0x1800;
public static final int INSTALL_TRANSACTION_BINDINGS = 0x1900;
public static final int INSTALL_WELD_DEPLOYMENT = 0x1B00;
public static final int INSTALL_WELD_BEAN_MANAGER = 0x1C00;
public static final int INSTALL_JNDI_DEPENDENCIES = 0x1C01;
public static final int INSTALL_CDI_VALIDATOR_FACTORY = 0x1C02;
public static final int INSTALL_WS_UNIVERSAL_META_DATA_MODEL = 0x1C10;
public static final int INSTALL_WS_DEPLOYMENT_ASPECTS = 0x1C11;
// IMPORTANT: WS integration installs deployment aspects dynamically
// so consider INSTALL 0x1C10 - 0x1CFF reserved for WS subsystem!
public static final int INSTALL_WAR_DEPLOYMENT = 0x1D00;
public static final int INSTALL_WAB_DEPLOYMENT = 0x1E00;
public static final int INSTALL_DEPLOYMENT_REPOSITORY = 0x1F00;
public static final int INSTALL_EJB_MANAGEMENT_RESOURCES = 0x2000;
public static final int INSTALL_APPLICATION_CLIENT = 0x2010;
public static final int INSTALL_CACHE_DEPENDENCIES = 0x2020;
public static final int INSTALL_MESSAGING_XML_RESOURCES = 0x2030;
public static final int INSTALL_BUNDLE_ACTIVATE = 0x2040;
public static final int INSTALL_WAB_SERVLETCONTEXT_SERVICE = 0x2050;
public static final int INSTALL_PERSISTENCE_SERVICES = 0x2060;
public static final int INSTALL_DEPLOYMENT_COMPLETE_SERVICE = 0x2100;
// CLEANUP
public static final int CLEANUP_REFLECTION_INDEX = 0x0100;
public static final int CLEANUP_EE = 0x0200;
public static final int CLEANUP_EJB = 0x0300;
public static final int CLEANUP_ANNOTATION_INDEX = 0x0400;
}