public class EJB3Profile extends UMLProfile
Modifier and Type | Field and Description |
---|---|
static String |
STEREOTYPE_CREATE_METHOD
'CreateMethod' Specifies the create method stereotype - used in entity POJO
and session bean.
|
static String |
STEREOTYPE_DATA_SOURCE
'DataSource' Represents a class used to inject a javax.sql.DataSource as a resource.
|
static String |
STEREOTYPE_ENTITY
'Entity' Specifies the entity bean stereotype.
|
static String |
STEREOTYPE_ENV_ENTRY
'EnvEntry' Specifies the environment entry stereotype used on static variables
to permit Resource injection.
|
static String |
STEREOTYPE_FINDER_RESULT_TYPE_FIRST
'FirstResult' The stereotype indicating the finder method parameter result type
is assigned to be the first/index.
|
static String |
STEREOTYPE_FINDER_RESULT_TYPE_MAX
'MaxResult' The stereotype indicating the finder method parameter result type
is assigned to be the max results to return.
|
static String |
STEREOTYPE_INTERCEPTOR
'Interceptor' Represents an interceptor class for a session or message-driven bean.
|
static String |
STEREOTYPE_LISTENER
'Listener' Represents a callback listener class for entity, session and
message driven bean classes.
|
static String |
STEREOTYPE_MAPPED_SUPERCLASS
'MappedSuperclass' Specifies this class as a mapped/embeddable super class.
|
static String |
STEREOTYPE_MESSAGE_DRIVEN
'MessageDriven' Specifies the JMS message driven bean stereotype.
|
static String |
STEREOTYPE_PERSISTENCE_CONTEXT
'PersistenceContext' Represents a persistence context instance referenced from a session bean.
|
static String |
STEREOTYPE_POST_ACTIVATE
'PostActivate' Specifies the session bean operation as a post-activate callback
|
static String |
STEREOTYPE_POST_CONSTRUCT
'PostConstruct' Specifies the session/message-driven bean operation as a post-construct callback
|
static String |
STEREOTYPE_POST_LOAD
'PostLoad' Specifies the entity bean operation as a post-load callback
|
static String |
STEREOTYPE_POST_PERSIST
'PostPersist' Specifies the entity operation as a post-persist callback
|
static String |
STEREOTYPE_POST_REMOVE
'PostRemove' Specifies the entity bean operation as a post-remove callback
|
static String |
STEREOTYPE_POST_UPDATE
'PostUpdate' Specifies the entity bean operation as a post-update callback
|
static String |
STEREOTYPE_PRE_DESTROY
'PreDestroy' Specifies the session/message-driven bean operation as a pre-destroy callback
|
static String |
STEREOTYPE_PRE_PASSIVATE
'PrePassivate' Specifies the session bean operation as a pre-passivate callback
|
static String |
STEREOTYPE_PRE_PERSIST
'PrePersist' Specifies the entity bean operation as a pre-persist callback
|
static String |
STEREOTYPE_PRE_REMOVE
'PreRemove' Specifies the entity bean operation as a pre-remove callback
|
static String |
STEREOTYPE_PRE_UPDATE
'PreUpdate' Specifies the entity bean operation as a pre-update callback
|
static String |
STEREOTYPE_RESOURCE_REF
'ResourceRef' Represents a reference to a resource i.e.
|
static String |
STEREOTYPE_SEAM_ASYNCHRONOUS
'Asynchronous' Specifies that the method call is processed asynchronously.
|
static String |
STEREOTYPE_SEAM_ASYNCHRONOUS_DURATION
'Duration' Specifies that a parameter of the asynchronous call is the duration
before the call is processed (or first processed for recurring
calls).
|
static String |
STEREOTYPE_SEAM_ASYNCHRONOUS_EXPIRATION
'Expiration' Specifies that a parameter of the asynchronous call is the datetime
at which the call is processed (or first processed for recurring
calls).
|
static String |
STEREOTYPE_SEAM_ASYNCHRONOUS_INTERVAL_DURATION
'IntervalDuration' Specifies that an asynchronous method call recurs, and that the
annotated parameter is duration between recurrences.
|
static String |
STEREOTYPE_SEAM_BIJECTION_FACTORY
'Factory' When this stereotype is used on an operation which return void
that operation will be used to initialize the value of the named
context variable, when the context variable has no value.
|
static String |
STEREOTYPE_SEAM_BIJECTION_IN
'In' Specifies the bean attribute is a component attribute to be injected from a context variable
|
static String |
STEREOTYPE_SEAM_BIJECTION_LOGGER
'Logger' Specifies that a component field is to be injected with an instance
of org.jboss.seam.log.Log.
|
static String |
STEREOTYPE_SEAM_BIJECTION_OUT
'Out' Specifies the bean attribute is a component attribute to be outjected from a context variable
|
static String |
STEREOTYPE_SEAM_BIJECTION_REQUEST_PARAMETER
'RequestParameter' Specifies that a component attribute is to be injected with the
value of a request parameter.
|
static String |
STEREOTYPE_SEAM_BIJECTION_UNWRAP
'Unwrap' Specifies that the object returned by the annotated getter method
is the thing that is injected instead of the component instance itself.
|
static String |
STEREOTYPE_SEAM_COMPONENT
'Seam' Specifies the bean is a Seam component
|
static String |
STEREOTYPE_SEAM_COMPONENT_STARTUP
'Startup' Specifies that a session scope component is started
immediately at session creation time, unless dependencies
are specified.
|
static String |
STEREOTYPE_SEAM_CONVERSATION_BEGIN
'Begin' Specifies that a long-running conversation begins when this method
returns a non-null outcome without exception.
|
static String |
STEREOTYPE_SEAM_CONVERSATION_BEGIN_TASK
'BeginTask' Specifies that a long-running conversation ends when this method
returns a non-null outcome without exception.
|
static String |
STEREOTYPE_SEAM_CONVERSATION_CREATE_PROCESS
'CreateProcess' Creates a new jBPM process instance when the method returns a
non-null outcome without exception.
|
static String |
STEREOTYPE_SEAM_CONVERSATION_END
'End' Specifies that a long-running conversation ends when this method
returns a non-null outcome without exception.
|
static String |
STEREOTYPE_SEAM_CONVERSATION_END_TASK
'EndTask' "Ends" a jBPM task.
|
static String |
STEREOTYPE_SEAM_CONVERSATION_RESUME_PROCESS
'ResumeProcess' Re-enters the scope of an existing jBPM process instance when the
method returns a non-null outcome without exception.
|
static String |
STEREOTYPE_SEAM_CONVERSATION_START_TASK
'StartTask' "Starts" a jBPM task.
|
static String |
STEREOTYPE_SEAM_DATA_DATAMODEL
'DataModel' Exposes an attribute of type List, Map, Set or Object[] as a JSF
DataModel into the scope of the owning component (or the EVENT
scope if the owning component is STATELESS).
|
static String |
STEREOTYPE_SEAM_DATA_DATAMODEL_SELECTION
'DataModelSelection' Injects the selected value from the JSF DataModel (this is the
element of the underlying collection, or the map value).
|
static String |
STEREOTYPE_SEAM_DATA_DATAMODEL_SELECTION_INDEX
'DataModelSelectionIndex' Exposes the selection index of the JSF DataModel as an attribute
of the component (this is the row number of the underlying
collection, or the map key).
|
static String |
STEREOTYPE_SEAM_INTERCEPTOR
'Interceptor' This stereotype appear on Seam interceptor classes.
|
static String |
STEREOTYPE_SEAM_LIFECYCLE_CREATE
'Create' Indicates that the method is a Seam component lifecycle operation
and should be called when an instance of the component is instantiated by
Seam.
|
static String |
STEREOTYPE_SEAM_LIFECYCLE_DESTROY
'Destroy' Indicates that the method is a Seam component lifecycle operation
and should be called when the context ends and its context variables
are destroyed.
|
static String |
STEREOTYPE_SEAM_TRANSACTION_ROLLBACK
'Rollback' If the outcome of the method matches any of the listed outcomes,
or if no outcomes are listed, set the transaction to rollback only
when the method completes.
|
static String |
STEREOTYPE_SEAM_TRANSACTION_TRANSACTIONAL
'Transactional' Specifies that a JavaBean component should have a similar
transactional behavior to the default behavior of a session bean
component.
|
static String |
STEREOTYPE_SEAM_VALIDATION_VALID
'Valid' Specifies that the Hibernate Validator should validate this and related
component attributes before an action listener Seam component method is
invoked.
|
static String |
STEREOTYPE_SEAM_VALIDATION_VALIDATOR
'Validator' Specifies that the validator should validate all Seam components marked
with @Valid annotation before the method is invoked.
|
static String |
STEREOTYPE_SEAM_WEBREMOTE
'WebRemote' Indicates that the annotated method may be called from client-side
JavaScript.
|
static String |
STEREOTYPE_SECURITY_RUNAS
'RunAs' Represents a dependency from an actor that is identified to
apply a run-as identity to the bean when making calls.
|
static String |
STEREOTYPE_SELECT_METHOD
Specifies the select method stereotype - used in EJB2.x
This may be deprecated in future releases.
|
static String |
STEREOTYPE_SERVICE
'Service' Specifies the service bean stereotype.
|
static String |
STEREOTYPE_SERVICE_TIMER_TIMEOUT
'Timeout' Specifies the session bean operation as a
Timer Service timeout callback method.
|
static String |
STEREOTYPE_USER_TRANSACTION
'UserTransaction' Represents a class used to inject a javax.transaction.UserTransaction as a resource.
|
static String |
STEREOTYPE_VALUE_REF
'ValueRef' Represents a reference to a value object - used in EJB2.x
This may be deprecated in future releases.
|
static String |
STEREOTYPE_VERSION
'Version' Specifies the version stereotype - optimistic lock value of an attribute of an entity.
|
static String |
TAGGEDVALUE_ASSOCIATION_COLLECTION_TYPE
'andromda_persistence_collection_type'
Defines the association collection type
|
static String |
TAGGEDVALUE_ASSOCIATION_INDEX
'andromda_persistence_collection_index'
Defines the index column for ejb3 indexed collections
|
static String |
TAGGEDVALUE_ASSOCIATION_INDEX_TYPE
'andromda_persistence_collection_index_type'
Defines the index column type for ejb3 indexed collections
|
static String |
TAGGEDVALUE_DEFAULT_INTERCEPTOR
'andromda_service_interceptor_default'
Defines a default interceptor for a session or message-driven bean.
|
static String |
TAGGEDVALUE_EJB_MDB_ACKNOWLEDGE_MODE
'andromda_ejb_mdb_acknowledge_mode'
The tagged value representing the JMS message driven bean
acknowledge mode.
|
static String |
TAGGEDVALUE_EJB_MDB_DESTINATION
'andromda_ejb_mdb_destination'
The tagged value representing the JMS message driven bean
destination JNDI name.
|
static String |
TAGGEDVALUE_EJB_MDB_DESTINATION_TYPE
'andromda_ejb_mdb_destination_type'
The tagged value representing the JMS message driven bean
destination type.
|
static String |
TAGGEDVALUE_EJB_MDB_DURABILITY
'andromda_ejb_mdb_subscription_durability'
The tagged value representing the JMS message driven bean
topic subscription durability mode.
|
static String |
TAGGEDVALUE_EJB_MDB_MAXIMUM_POOL_SIZE
'andromda_ejb_mdb_pool_size_max'
The tagged value indicating the bean maximum pool size
|
static String |
TAGGEDVALUE_EJB_MDB_MINIMUM_POOL_SIZE
'andromda_ejb_mdb_pool_size_min'
The tagged value indicating the bean minimum pool size
|
static String |
TAGGEDVALUE_EJB_MDB_SELECTOR
'andromda_ejb_mdb_selector'
The tagged value representing the JMS message driven bean
selector logic.
|
static String |
TAGGEDVALUE_EJB_NO_SYNTHETIC_CREATE_METHOD
'andromda_ejb_noSyntheticCreateMethod' The tagged value indicating whether to not allow synthetic
(auto generated) create/constructors.
|
static String |
TAGGEDVALUE_EJB_PERSISTENCE_CONTEXT_DATASOURCE
'andromda_service_persistence_context_datasource'
The tagged value representing the persistence context
datasource JNDI name
|
static String |
TAGGEDVALUE_EJB_PERSISTENCE_CONTEXT_TYPE
'andromda_service_persistence_context_unit_type'
The tagged value representing the persistence context
transaction/extended type
|
static String |
TAGGEDVALUE_EJB_PERSISTENCE_CONTEXT_UNIT_NAME
'andromda_service_persistence_context_unit_name'
The tagged value representing the persistence context
unit name (EntityManager)
|
static String |
TAGGEDVALUE_EJB_PERSISTENCE_FLUSH_MODE
'andromda_service_persistence_flush_mode'
The tagged value representing the flush mode on bean operation.
|
static String |
TAGGEDVALUE_EJB_PERSISTENCE_LOB_TYPE
'andromda_persistence_lob_type'
The tagged value overriding the default LOB type for attribute.
|
static String |
TAGGEDVALUE_EJB_QUERY
'andromda_ejb_query' The tagged value indicating the EJB query.
|
static String |
TAGGEDVALUE_EJB_SECURITY_DENY_ALL
'andromda_service_security_denyAll'
The tagged value representing whether to deny all roles access rights
to execute operations in the bean.
|
static String |
TAGGEDVALUE_EJB_SECURITY_PERMIT_ALL
'andromda_service_security_permitAll'
The tagged value representing whether to permit all roles to execute
operations in the bean.
|
static String |
TAGGEDVALUE_EJB_SECURITY_REALM
'andromda_service_security_realm'
The tagged value representing the security domain to specify at
the session bean class level.
|
static String |
TAGGEDVALUE_EJB_SESSION_JNDI_NAME_Local
'andromda_service_jndi_local'
The tagged value representing the session bean local interface
JNDI name.
|
static String |
TAGGEDVALUE_EJB_SESSION_JNDI_NAME_REMOTE
'andromda_service_jndi_remote'
The tagged value representing the session bean remote interface
JNDI name.
|
static String |
TAGGEDVALUE_EJB_SESSION_TYPE
'andromda_service_type'
The tagged value representing the session EJB type (Stateless or Stateful)
|
static String |
TAGGEDVALUE_EJB_TRANSACTION_MANAGEMENT
'andromda_ejb_transaction_management' The tagged value indicating the transaction demarcation
strategy.
|
static String |
TAGGEDVALUE_EJB_TRANSACTION_TYPE
'andromda_ejb_transaction_type' The tagged value indicating the transaction property.
|
static String |
TAGGEDVALUE_EJB_USE_QUERY_CACHE
'andromda_ejb_query_useCache'
Defines whether query cache is enable for query.
|
static String |
TAGGEDVALUE_EJB_VIEWTYPE
'andromda_ejb_viewType' The tagged value indicating the view type for the
class or operation.
|
static String |
TAGGEDVALUE_GENERATE_CMR
andromda_ejb_generateCMR
|
static String |
TAGGEDVALUE_HIBERNATE_ASSOCIATION_CACHE
'andromda_persistence_association_cache'
Defines the cache type for a relationship collection.
|
static String |
TAGGEDVALUE_HIBERNATE_CASCADE
'andromda_hibernate_cascade'
Defines the tagged value for hibernate cascade on an association end
|
static String |
TAGGEDVALUE_HIBERNATE_ENTITY_CACHE
'andromda_persistence_entity_cache'
Defines the cache type for the Entity.
|
static String |
TAGGEDVALUE_PERSISTENCE_ASSOCIATION_END_PRIMARY
'andromda_persistence_associationEnd_primary'
Defines the owning side of a bidirectional navigable relationship.
|
static String |
TAGGEDVALUE_PERSISTENCE_CASCADE_TYPE
'andromda_persistence_cascade_type' The tagged value indicating the cascade type.
|
static String |
TAGGEDVALUE_PERSISTENCE_COLUMN_DEFINITION
'andromda_persistence_column_definition' The tagged value indicating the SQL definition for a column.
|
static String |
TAGGEDVALUE_PERSISTENCE_COLUMN_INSERT
'andromda_persistence_column_insert' The tagged value that specifies whether a mapped column should be
included in SQL INSERT statements.
|
static String |
TAGGEDVALUE_PERSISTENCE_COLUMN_NULLABLE
'andromda_persistence_column_nullable' The tagged value to represent a column that is nullable.
|
static String |
TAGGEDVALUE_PERSISTENCE_COLUMN_PRECISION
'andromda_persistence_column_precision' The tagged value for the precision in a float/double column.
|
static String |
TAGGEDVALUE_PERSISTENCE_COLUMN_SCALE
'andromda_persistence_column_scale' The tagged value for the scale in a float/double column.
|
static String |
TAGGEDVALUE_PERSISTENCE_COLUMN_UPDATE
'andromda_persistence_column_update' The tagged value that specifies whether a mapped column should be included
in SQL UPDATE statements.
|
static String |
TAGGEDVALUE_PERSISTENCE_DISCRIMINATOR_COLUMN
'andromda_persistence_discriminator_column_name'
The tagged value indicating the name of the column used
for the discriminator
|
static String |
TAGGEDVALUE_PERSISTENCE_DISCRIMINATOR_COLUMN_DEFINITION
'andromda_persistence_discriminator_column_definition'
The tagged value representing the SQL used in generation
of DDL for the discriminator column
|
static String |
TAGGEDVALUE_PERSISTENCE_DISCRIMINATOR_COLUMN_LENGTH
'andromda_persistence_discriminator_column_length'
The tagged value representing the column length for the
String discriminator column type.
|
static String |
TAGGEDVALUE_PERSISTENCE_DISCRIMINATOR_TYPE
'andromda_persistence_discriminator_type' For the inheritance SINGLE_TABLE and JOINED strategies, the persistence
provider will use a specified discriminator type column.
|
static String |
TAGGEDVALUE_PERSISTENCE_DISCRIMINATOR_VALUE
'andromda_persistence_discriminator_value' The tagged value indicating that the row is an entity of
the annotated entity type.
|
static String |
TAGGEDVALUE_PERSISTENCE_ENTITY_TABLE_NAME
'andromda_persistence_table' The tagged value indicating the entity table name.
|
static String |
TAGGEDVALUE_PERSISTENCE_ENUMERATION_TYPE
'andromda_persistence_enumeration_type' The tagged value indicating the enumeration type (ORDINAL, STRING).
|
static String |
TAGGEDVALUE_PERSISTENCE_FETCH_TYPE
'andromda_persistence_fetch_type' The tagged value indicating the fetch type.
|
static String |
TAGGEDVALUE_PERSISTENCE_GENERATOR_ALLOCATION_SIZE
'andromda_persistence_generator_allocation_size' The tagged value indicating the step size for the generator.
|
static String |
TAGGEDVALUE_PERSISTENCE_GENERATOR_GENERIC_STRATEGY
'andromda_persistence_generator_genericStrategy' The tagged value indicating the generator generic strategy.
|
static String |
TAGGEDVALUE_PERSISTENCE_GENERATOR_INITIAL_VALUE
'andromda_persistence_generator_initial_value' The tagged value indicating the initial value for the generator.
|
static String |
TAGGEDVALUE_PERSISTENCE_GENERATOR_NAME
'andromda_persistence_generator_name' The tagged value indicating the generator name.
|
static String |
TAGGEDVALUE_PERSISTENCE_GENERATOR_PKCOLUMN_VALUE
'andromda_persistence_generator_pkcolumn_value' The tagged value indicating the primary key column value for the generator.
|
static String |
TAGGEDVALUE_PERSISTENCE_GENERATOR_SOURCE_NAME
'andromda_persistence_generator_source_name' The tagged value indicating the generator source name.
|
static String |
TAGGEDVALUE_PERSISTENCE_GENERATOR_TYPE
'andromda_persistence_generator_type' The tagged value indicating the generator type.
|
static String |
TAGGEDVALUE_PERSISTENCE_INHERITANCE
'andromda_persistence_inheritance' Support for entity inheritance strategy with permitted values:
SINGLE_TABLE : one table per hierarchy
TABLE_PER_CLASS : one table per class in hierarchy
JOINED : one table per class
See EJB 3.0 documentation for specific details.
|
static String |
TAGGEDVALUE_PERSISTENCE_OPTIONAL
'andromda_persistence_optional' The tagged value indicating the underlying relationship may
be NULL.
|
static String |
TAGGEDVALUE_PERSISTENCE_ORDERBY
'andromda_persistence_orderBy' The tagged value that indicates the order by logic on the
Many side of the One-to-Many and Many-to-Many relationships.
|
static String |
TAGGEDVALUE_PERSISTENCE_OVERRIDE_TYPE
'andromda_hibernate_type' The tagged value indicating the overridden type specified on attributes or
finder method arguments , to generate @org.hibernate.annotations.Type annotations.
|
static String |
TAGGEDVALUE_PERSISTENCE_TEMPORAL_TYPE
'andromda_persistence_temporal_type' The tagged value indicating the temporal type specified on attributes or
finder method arguments of temporal nature.
|
static String |
TAGGEDVALUE_SEAM_BIJECTION_FACTORY_SCOPE_TYPE
'andromda_seam_bijection_factory_scope'
Specifies the scope that Seam should bind the returned value to.
|
static String |
TAGGEDVALUE_SEAM_BIJECTION_FACTORY_VALUE
'andromda_seam_bijection_factory_value'
Specifies the name of the context variable.
|
static String |
TAGGEDVALUE_SEAM_BIJECTION_IN_CREATE
'andromda_seam_bijection_in_create'
Specifies that Seam should instantiate the component with the same
name as the context variable if the context variable is undefined
(null) in all contexts.
|
static String |
TAGGEDVALUE_SEAM_BIJECTION_IN_VALUE
'andromda_seam_bijection_in_value'
Specifies the name of the context variable.
|
static String |
TAGGEDVALUE_SEAM_BIJECTION_LOGGER_VALUE
'andromda_seam_bijection_logger_value'
Specifies the name of the log category.
|
static String |
TAGGEDVALUE_SEAM_BIJECTION_OUT_SCOPE_TYPE
'andromda_seam_bijection_out_scope'
Specifies that a component attribute that is not a Seam component
type is to be outjected to a specific scope at the end of the
invocation.
|
static String |
TAGGEDVALUE_SEAM_BIJECTION_OUT_VALUE
'andromda_seam_bijection_out_value'
Specifies the name of the context variable explicitly, instead of
using the annotated instance variable name.
|
static String |
TAGGEDVALUE_SEAM_BIJECTION_REQUEST_PARAMETER_VALUE
'andromda_seam_bijection_requestparameter_value'
Specifies the name of the request parameter.
|
static String |
TAGGEDVALUE_SEAM_COMPONENT_CONVERSIONAL_IFNOTBEGUNOUTCOME
'andromda_seam_component_conversional_ifnotbegunoutcome'
Specifies that a conversation scope component is conversational,
meaning that no method of the component can be called unless a
long-running conversation started by this component is active
(unless the method would begin a new long-running conversation).
|
static String |
TAGGEDVALUE_SEAM_COMPONENT_INTERCEPT
'andromda_seam_component_intercept'
Determines when Seam interceptors are active.
|
static String |
TAGGEDVALUE_SEAM_COMPONENT_JNDI_NAME
'andromda_seam_component_jndiname'
Specifies the JNDI name that Seam will use to look up the EJB
component.
|
static String |
TAGGEDVALUE_SEAM_COMPONENT_NAME
'andromda_seam_component_name'
Defines the Seam component name
|
static String |
TAGGEDVALUE_SEAM_COMPONENT_READONLY
'andromda_seam_component_readonly'
Specifies that a JavaBean component or component method does not
require state replication at the end of the invocation.
|
static String |
TAGGEDVALUE_SEAM_COMPONENT_ROLE_NAME
'andromda_seam_component_role_name'
Allows a Seam component to be bound to multiple contexts variables.
|
static String |
TAGGEDVALUE_SEAM_COMPONENT_ROLE_SCOPE_TYPE
The context variable scope.
|
static String |
TAGGEDVALUE_SEAM_COMPONENT_STARTUP_DEPENDS
'andromda_seam_component_startup_depends'
named components must be started first, if they are installed.
|
static String |
TAGGEDVALUE_SEAM_COMPONENT_SYNCHRONIZED_TIMEOUT
'andromda_seam_component_synchronized_timeout'
Specifies that a component is accessed concurrently by multiple
clients, and that Seam should serialize requests.
|
static String |
TAGGEDVALUE_SEAM_CONVERSATION_BEGIN_FLUSH_MODE
'andromda_seam_conversation_begin_flushmode'
Specify the flush mode of any Seam-managed persistence contexts.
|
static String |
TAGGEDVALUE_SEAM_CONVERSATION_BEGIN_IF_OUTCOME
'andromda_seam_conversation_begin_ifoutcome'
Specifies that a long-running conversation begins when this action
listener method returns with one of the given outcomes.
|
static String |
TAGGEDVALUE_SEAM_CONVERSATION_BEGIN_JOIN
'andromda_seam_conversation_begin_join'
Specifies that if a long-running conversation is already in
progress, the conversation context is simply propagated.
|
static String |
TAGGEDVALUE_SEAM_CONVERSATION_BEGIN_NESTED
'andromda_seam_conversation_begin_nested'
Specifies that if a long-running conversation is already in
progress, a new nested conversation context begins.
|
static String |
TAGGEDVALUE_SEAM_CONVERSATION_BEGIN_PAGEFLOW
'andromda_seam_conversation_begin_pageflow'
Specifies a jBPM process definition name that defines the pageflow
for this conversation.
|
static String |
TAGGEDVALUE_SEAM_CONVERSATION_BEGIN_TASK_FLUSH_MODE
'andromda_seam_conversation_begintask_flushmode'
Set the flush mode of any Seam-managed Hibernate sessions or JPA
persistence contexts that are created during this conversation.
|
static String |
TAGGEDVALUE_SEAM_CONVERSATION_BEGIN_TASK_ID_PARAMETER
'andromda_seam_conversation_begintask_taskidparameter'
The name of a request parameter which holds the id of the task.
|
static String |
TAGGEDVALUE_SEAM_CONVERSATION_CREATE_PROCESS_DEFINITION
'andromda_seam_conversation_createprocess_definition'
The name of the jBPM process definition deployed via
org.jboss.seam.core.jbpm.processDefinitions.
|
static String |
TAGGEDVALUE_SEAM_CONVERSATION_END_BEFORE_REDIRECT
'andromda_seam_conversation_end_beforeredirect'
By default, the conversation will not actually be destroyed until
after any redirect has occurred.
|
static String |
TAGGEDVALUE_SEAM_CONVERSATION_END_EVEN_IF_EXCEPTION
'andromda_seam_conversation_end_evenifexception'
Specifies that a long-running conversation ends when this action
listener method throws one of the specified classes of exception.
|
static String |
TAGGEDVALUE_SEAM_CONVERSATION_END_IF_OUTCOME
'andromda_seam_conversation_end_ifoutcome'
Specifies that a long-running conversation ends when this action
listener method returns with one of the given outcomes.
|
static String |
TAGGEDVALUE_SEAM_CONVERSATION_END_TASK_BEFORE_REDIRECT
'andromda_seam_conversation_endtask_beforeredirect'
By default, the conversation will not actually be destroyed until
after any redirect has occurred.
|
static String |
TAGGEDVALUE_SEAM_CONVERSATION_END_TASK_IF_OUTCOME
'andromda_seam_conversation_endtask_ifoutcome'
Specifies the JSF outcome or outcomes that result in the end of
the task.
|
static String |
TAGGEDVALUE_SEAM_CONVERSATION_END_TASK_TRANSITION_NAME
'andromda_seam_conversation_endtask_transition_name'
Triggers the given jBPM transition.
|
static String |
TAGGEDVALUE_SEAM_CONVERSATION_RESUME_PROCESS_PROCESS_ID_PARAMETER
'andromda_seam_conversation_resumeprocess_processIdParameter'
The name a request parameter holding the process id.
|
static String |
TAGGEDVALUE_SEAM_CONVERSATION_START_TASK_FLUSH_MODE
'andromda_seam_conversation_starttask_flushmode'
Set the flush mode of any Seam-managed Hibernate sessions or JPA
persistence contexts that are created during this conversation.
|
static String |
TAGGEDVALUE_SEAM_CONVERSATION_START_TASK_ID_PARAMETER
'andromda_seam_conversation_begintask_taskidparameter'
The name of a request parameter which holds the id of the task.
|
static String |
TAGGEDVALUE_SEAM_DATA_DATABINDER_CLASS
'andromda_seam_data_databinderclass'
This meta-annotation make it possible to implement similar
functionality to @DataModel and @DataModelSelection for other
data structures apart from lists.
|
static String |
TAGGEDVALUE_SEAM_DATA_DATAMODEL_SCOPE_TYPE
'andromda_seam_data_datamodel_scope'
If scope=ScopeType.PAGE is explicitly specified, the DataModel will
be kept in the PAGE context.
|
static String |
TAGGEDVALUE_SEAM_DATA_DATAMODEL_SELECTION_INDEX_VALUE
'andromda_seam_data_datamodelselectionindex_value'
Name of the conversation context variable.
|
static String |
TAGGEDVALUE_SEAM_DATA_DATAMODEL_SELECTION_VALUE
'andromda_seam_data_datamodelselection_value'
Name of the conversation context variable.
|
static String |
TAGGEDVALUE_SEAM_DATA_DATAMODEL_VALUE
'andromda_seam_data_datamodel_value'
Name of the conversation context variable.
|
static String |
TAGGEDVALUE_SEAM_DATA_DATASELECTOR_CLASS
'andromda_seam_data_dataselectorclass'
This meta-annotation make it possible to implement similar
functionality to @DataModel and @DataModelSelection for other
datastructures apart from lists.
|
static String |
TAGGEDVALUE_SEAM_INTERCEPTOR_AROUND
'andromda_seam_interceptor_around'
Specifies that this interceptor is positioned higher in the stack
than the given interceptors.
|
static String |
TAGGEDVALUE_SEAM_INTERCEPTOR_STATELESS
'andromda_seam_interceptor_stateless'
Specifies that this interceptor is stateless and Seam may optimize
replication.
|
static String |
TAGGEDVALUE_SEAM_INTERCEPTOR_TYPE
'andromda_seam_interceptor_type'
Specifies that this interceptor is a "client-side" interceptor
that is called before the EJB container.
|
static String |
TAGGEDVALUE_SEAM_INTERCEPTOR_WITHIN
'andromda_seam_interceptor_within'
Specifies that this interceptor is positioned deeper in the stack
than the given interceptors.
|
static String |
TAGGEDVALUE_SEAM_LIFECYCLE_OBSERVER_EVENT
'andromda_seam_lifecycle_observer_event'
Specifies that the method should be called when a component-driven
event of the specified type occurs.
|
static String |
TAGGEDVALUE_SEAM_SCOPE_TYPE
'andromda_seam_component_role_scope'
Defines the JBoss Seam component scope type
|
static String |
TAGGEDVALUE_SEAM_TRANSACTION_ROLLBACK_IF_OUTCOME
'andromda_seam_transaction_rollback_ifoutcome'
The JSF outcomes that cause a transaction rollback (no outcomes is
interpreted to mean any outcome).
|
static String |
TAGGEDVALUE_SEAM_VALIDATION_OUTCOME
'andromda_seam_validation_outcome'
Returns the JSF outcome when validation fails.
|
static String |
TAGGEDVALUE_SEAM_VALIDATION_REFRESH_ENTITIES
'andromda_seam_validation_refreshEntities'
Specifies whether invalid entities in the managed state
should be refreshed from the database when validation fails.
|
static String |
TAGGEDVALUE_SEAM_WEBREMOTE_EXCLUDE
'andromda_seam_webremote_exclude'
Excludes objects from the WebRemote call result's object graph
(see the Remoting chapter in Seam doc for more details).
|
static String |
TAGGEDVALUE_SERVICE_INTERCEPTOR_EXCLUDE_CLASS
'andromda_service_interceptor_excludeClass'
Defines whether to exclude the class interceptors for the session operation.
|
static String |
TAGGEDVALUE_SERVICE_INTERCEPTOR_EXCLUDE_DEFAULT
'andromda_service_interceptor_excludeDefault'
Defines whether to exclude the default interceptors for the session operation.
|
static String |
TAGGEDVALUE_WEBSERVICE_OPERATION_NAME
'andromda_webservice_operation_name'
Defines the webservice method name
|
static String |
TAGGEDVALUE_WEBSERVICE_OPERATION_ONEWAY
'andromda_webservice_operation_oneway'
Defines the webservice method as oneway
|
static String |
TAGGEDVALUE_WEBSERVICE_OPERATION_RESULT_NAME
'andromda_webservice_operation_result_name'
Defines the webservice method result name
|
static String |
TAGGEDVALUE_WEBSERVICE_PARAMETER_STYLE
'andromda_webservice_parameter_style'
Defines the webservice parameter style
|
BLOB_TYPE_NAME, BOOLEAN_TYPE_NAME, CHARACTER_TYPE_NAME, CLOB_TYPE_NAME, COLLECTION_IMPL_TYPE_NAME, COLLECTION_TYPE_NAME, DATE_TYPE_NAME, DATETIME_TYPE_NAME, DOUBLE_TYPE_NAME, FILE_TYPE_NAME, FLOAT_TYPE_NAME, INTEGER_TYPE_NAME, LIST_IMPL_TYPE_NAME, LIST_TYPE_NAME, LONG_TYPE_NAME, MAP_IMPL_TYPE_NAME, MAP_TYPE_NAME, OBJECT_TYPE_NAME, ORDERED_MAP_IMPL_TYPE_NAME, ORDERED_MAP_TYPE_NAME, ORDERED_SET_IMPL_TYPE_NAME, ORDERED_SET_TYPE_NAME, SET_IMPL_TYPE_NAME, SET_TYPE_NAME, STEREOTYPE_ANALYSIS, STEREOTYPE_APPLICATION_EXCEPTION, STEREOTYPE_CRITERIA, STEREOTYPE_DOC_ONLY, STEREOTYPE_EMBEDDED_VALUE, STEREOTYPE_ENUMERATION, STEREOTYPE_EXCEPTION, STEREOTYPE_EXCEPTION_REF, STEREOTYPE_FINDER_METHOD, STEREOTYPE_FRONT_END_APPLICATION, STEREOTYPE_FRONT_END_EXCEPTION, STEREOTYPE_FRONT_END_USECASE, STEREOTYPE_FRONT_END_VIEW, STEREOTYPE_FUTURE, STEREOTYPE_IDENTIFIER, STEREOTYPE_IGNORE, STEREOTYPE_MANAGEABLE, STEREOTYPE_NULLABLE, STEREOTYPE_PERSPECTIVE, STEREOTYPE_QUEUE, STEREOTYPE_SERVICE_ELEMENT, STEREOTYPE_TOPIC, STEREOTYPE_TRANSIENT, STEREOTYPE_UNEXPECTED_EXCEPTION, STEREOTYPE_UNIQUE, STEREOTYPE_VALUE_OBJECT, STEREOTYPE_WEB_FAULT, STEREOTYPE_WEBSERVICE, STEREOTYPE_WEBSERVICE_OPERATION, STEREOTYPE_XMLSCHEMA, STRING_TYPE_NAME, TAGGEDVALUE_DOCUMENTATION, TAGGEDVALUE_EXTERNAL_HYPERLINK, TAGGEDVALUE_MANAGEABLE_DISPLAY_NAME, TAGGEDVALUE_MANAGEABLE_MAXIMUM_LIST_SIZE, TAGGEDVALUE_MANAGEABLE_PAGE_SIZE, TAGGEDVALUE_MANAGEABLE_RESOLVEABLE, TAGGEDVALUE_MODEL_HYPERLINK, TAGGEDVALUE_PERSISTENCE_ASSIGNED_IDENTIFIER, TAGGEDVALUE_PERSISTENCE_ASSOCIATION_END_UNIQUE_GROUP, TAGGEDVALUE_PERSISTENCE_COLUMN, TAGGEDVALUE_PERSISTENCE_COLUMN_INDEX, TAGGEDVALUE_PERSISTENCE_COLUMN_LENGTH, TAGGEDVALUE_PERSISTENCE_COLUMN_UNIQUE_GROUP, TAGGEDVALUE_PERSISTENCE_ENUMERATION_LITERAL_PARAMETERS, TAGGEDVALUE_PERSISTENCE_ENUMERATION_MEMBER_VARIABLE, TAGGEDVALUE_PERSISTENCE_FOREIGN_IDENTIFIER, TAGGEDVALUE_PERSISTENCE_FOREIGN_KEY_CONSTRAINT_NAME, TAGGEDVALUE_PERSISTENCE_IMMUTABLE, TAGGEDVALUE_PERSISTENCE_JOINCOLUMN_ORDER, TAGGEDVALUE_PERSISTENCE_SCHEMA, TAGGEDVALUE_PERSISTENCE_TABLE, TAGGEDVALUE_PRESENTATION_CONTROLLER_USECASE, TAGGEDVALUE_PRESENTATION_IS_TABLE, TAGGEDVALUE_PRESENTATION_TABLE_COLUMNS, TAGGEDVALUE_PRESENTATION_USECASE_ACTIVITY, TAGGEDVALUE_ROLE_NAME, TAGGEDVALUE_SERIALVERSION_UID, TAGGEDVALUE_WEBSERVICE_PROVIDER, TAGGEDVALUE_WEBSERVICE_STYLE, TAGGEDVALUE_WEBSERVICE_USE, TIME_TYPE_NAME, VOID_TYPE_NAME
Constructor and Description |
---|
EJB3Profile() |
public static final String STEREOTYPE_ENTITY
public static final String STEREOTYPE_MAPPED_SUPERCLASS
public static final String STEREOTYPE_SERVICE
public static final String STEREOTYPE_MESSAGE_DRIVEN
public static final String STEREOTYPE_CREATE_METHOD
public static final String STEREOTYPE_SELECT_METHOD
public static final String STEREOTYPE_ENV_ENTRY
public static final String STEREOTYPE_VERSION
public static final String STEREOTYPE_VALUE_REF
public static final String STEREOTYPE_PERSISTENCE_CONTEXT
public static final String STEREOTYPE_RESOURCE_REF
public static final String STEREOTYPE_USER_TRANSACTION
public static final String STEREOTYPE_DATA_SOURCE
public static final String STEREOTYPE_INTERCEPTOR
public static final String STEREOTYPE_SECURITY_RUNAS
public static final String STEREOTYPE_LISTENER
public static final String STEREOTYPE_SERVICE_TIMER_TIMEOUT
public static final String STEREOTYPE_FINDER_RESULT_TYPE_FIRST
public static final String STEREOTYPE_FINDER_RESULT_TYPE_MAX
public static final String STEREOTYPE_POST_CONSTRUCT
public static final String STEREOTYPE_PRE_DESTROY
public static final String STEREOTYPE_POST_ACTIVATE
public static final String STEREOTYPE_PRE_PASSIVATE
public static final String STEREOTYPE_PRE_PERSIST
public static final String STEREOTYPE_POST_PERSIST
public static final String STEREOTYPE_PRE_REMOVE
public static final String STEREOTYPE_POST_REMOVE
public static final String STEREOTYPE_PRE_UPDATE
public static final String STEREOTYPE_POST_UPDATE
public static final String STEREOTYPE_POST_LOAD
public static final String STEREOTYPE_SEAM_COMPONENT
public static final String STEREOTYPE_SEAM_COMPONENT_STARTUP
public static final String STEREOTYPE_SEAM_BIJECTION_IN
public static final String STEREOTYPE_SEAM_BIJECTION_OUT
public static final String STEREOTYPE_SEAM_BIJECTION_UNWRAP
public static final String STEREOTYPE_SEAM_BIJECTION_FACTORY
public static final String STEREOTYPE_SEAM_BIJECTION_LOGGER
public static final String STEREOTYPE_SEAM_BIJECTION_REQUEST_PARAMETER
public static final String STEREOTYPE_SEAM_LIFECYCLE_CREATE
public static final String STEREOTYPE_SEAM_LIFECYCLE_DESTROY
public static final String STEREOTYPE_SEAM_CONVERSATION_BEGIN
public static final String STEREOTYPE_SEAM_CONVERSATION_END
public static final String STEREOTYPE_SEAM_CONVERSATION_BEGIN_TASK
public static final String STEREOTYPE_SEAM_CONVERSATION_START_TASK
public static final String STEREOTYPE_SEAM_CONVERSATION_END_TASK
public static final String STEREOTYPE_SEAM_CONVERSATION_CREATE_PROCESS
public static final String STEREOTYPE_SEAM_CONVERSATION_RESUME_PROCESS
public static final String STEREOTYPE_SEAM_TRANSACTION_TRANSACTIONAL
public static final String STEREOTYPE_SEAM_TRANSACTION_ROLLBACK
public static final String STEREOTYPE_SEAM_VALIDATION_VALID
public static final String STEREOTYPE_SEAM_VALIDATION_VALIDATOR
public static final String STEREOTYPE_SEAM_WEBREMOTE
public static final String STEREOTYPE_SEAM_INTERCEPTOR
public static final String STEREOTYPE_SEAM_ASYNCHRONOUS
public static final String STEREOTYPE_SEAM_ASYNCHRONOUS_DURATION
public static final String STEREOTYPE_SEAM_ASYNCHRONOUS_EXPIRATION
public static final String STEREOTYPE_SEAM_ASYNCHRONOUS_INTERVAL_DURATION
public static final String STEREOTYPE_SEAM_DATA_DATAMODEL
public static final String STEREOTYPE_SEAM_DATA_DATAMODEL_SELECTION
public static final String STEREOTYPE_SEAM_DATA_DATAMODEL_SELECTION_INDEX
public static final String TAGGEDVALUE_GENERATE_CMR
public static final String TAGGEDVALUE_EJB_QUERY
public static final String TAGGEDVALUE_EJB_VIEWTYPE
public static final String TAGGEDVALUE_EJB_TRANSACTION_TYPE
public static final String TAGGEDVALUE_EJB_TRANSACTION_MANAGEMENT
public static final String TAGGEDVALUE_EJB_NO_SYNTHETIC_CREATE_METHOD
public static final String TAGGEDVALUE_PERSISTENCE_TEMPORAL_TYPE
public static final String TAGGEDVALUE_PERSISTENCE_OVERRIDE_TYPE
public static final String TAGGEDVALUE_PERSISTENCE_ENTITY_TABLE_NAME
public static final String TAGGEDVALUE_PERSISTENCE_FETCH_TYPE
public static final String TAGGEDVALUE_PERSISTENCE_CASCADE_TYPE
public static final String TAGGEDVALUE_PERSISTENCE_ENUMERATION_TYPE
public static final String TAGGEDVALUE_PERSISTENCE_GENERATOR_TYPE
public static final String TAGGEDVALUE_PERSISTENCE_GENERATOR_NAME
public static final String TAGGEDVALUE_PERSISTENCE_GENERATOR_GENERIC_STRATEGY
public static final String TAGGEDVALUE_PERSISTENCE_GENERATOR_SOURCE_NAME
public static final String TAGGEDVALUE_PERSISTENCE_GENERATOR_PKCOLUMN_VALUE
public static final String TAGGEDVALUE_PERSISTENCE_GENERATOR_INITIAL_VALUE
public static final String TAGGEDVALUE_PERSISTENCE_GENERATOR_ALLOCATION_SIZE
public static final String TAGGEDVALUE_PERSISTENCE_COLUMN_DEFINITION
public static final String TAGGEDVALUE_PERSISTENCE_COLUMN_PRECISION
public static final String TAGGEDVALUE_PERSISTENCE_COLUMN_SCALE
public static final String TAGGEDVALUE_PERSISTENCE_COLUMN_NULLABLE
public static final String TAGGEDVALUE_PERSISTENCE_COLUMN_INSERT
public static final String TAGGEDVALUE_PERSISTENCE_COLUMN_UPDATE
public static final String TAGGEDVALUE_PERSISTENCE_ORDERBY
public static final String TAGGEDVALUE_PERSISTENCE_OPTIONAL
public static final String TAGGEDVALUE_PERSISTENCE_INHERITANCE
public static final String TAGGEDVALUE_PERSISTENCE_DISCRIMINATOR_TYPE
public static final String TAGGEDVALUE_PERSISTENCE_DISCRIMINATOR_VALUE
public static final String TAGGEDVALUE_PERSISTENCE_DISCRIMINATOR_COLUMN
public static final String TAGGEDVALUE_PERSISTENCE_DISCRIMINATOR_COLUMN_DEFINITION
public static final String TAGGEDVALUE_PERSISTENCE_DISCRIMINATOR_COLUMN_LENGTH
public static final String TAGGEDVALUE_EJB_PERSISTENCE_CONTEXT_UNIT_NAME
public static final String TAGGEDVALUE_EJB_PERSISTENCE_CONTEXT_TYPE
public static final String TAGGEDVALUE_EJB_PERSISTENCE_CONTEXT_DATASOURCE
public static final String TAGGEDVALUE_EJB_PERSISTENCE_FLUSH_MODE
public static final String TAGGEDVALUE_EJB_PERSISTENCE_LOB_TYPE
public static final String TAGGEDVALUE_EJB_SESSION_TYPE
public static final String TAGGEDVALUE_EJB_SECURITY_PERMIT_ALL
public static final String TAGGEDVALUE_EJB_SECURITY_DENY_ALL
public static final String TAGGEDVALUE_EJB_SECURITY_REALM
public static final String TAGGEDVALUE_EJB_MDB_ACKNOWLEDGE_MODE
public static final String TAGGEDVALUE_EJB_MDB_DESTINATION
public static final String TAGGEDVALUE_EJB_MDB_DESTINATION_TYPE
public static final String TAGGEDVALUE_EJB_MDB_SELECTOR
public static final String TAGGEDVALUE_EJB_MDB_DURABILITY
public static final String TAGGEDVALUE_EJB_SESSION_JNDI_NAME_REMOTE
public static final String TAGGEDVALUE_EJB_SESSION_JNDI_NAME_Local
public static final String TAGGEDVALUE_EJB_MDB_MINIMUM_POOL_SIZE
public static final String TAGGEDVALUE_EJB_MDB_MAXIMUM_POOL_SIZE
public static final String TAGGEDVALUE_ASSOCIATION_COLLECTION_TYPE
public static final String TAGGEDVALUE_ASSOCIATION_INDEX_TYPE
public static final String TAGGEDVALUE_ASSOCIATION_INDEX
public static final String TAGGEDVALUE_SERVICE_INTERCEPTOR_EXCLUDE_DEFAULT
public static final String TAGGEDVALUE_SERVICE_INTERCEPTOR_EXCLUDE_CLASS
public static final String TAGGEDVALUE_DEFAULT_INTERCEPTOR
public static final String TAGGEDVALUE_HIBERNATE_ENTITY_CACHE
public static final String TAGGEDVALUE_HIBERNATE_ASSOCIATION_CACHE
public static final String TAGGEDVALUE_PERSISTENCE_ASSOCIATION_END_PRIMARY
public static final String TAGGEDVALUE_HIBERNATE_CASCADE
public static final String TAGGEDVALUE_EJB_USE_QUERY_CACHE
public static final String TAGGEDVALUE_WEBSERVICE_PARAMETER_STYLE
public static final String TAGGEDVALUE_WEBSERVICE_OPERATION_ONEWAY
public static final String TAGGEDVALUE_WEBSERVICE_OPERATION_NAME
public static final String TAGGEDVALUE_WEBSERVICE_OPERATION_RESULT_NAME
public static final String TAGGEDVALUE_SEAM_COMPONENT_NAME
public static final String TAGGEDVALUE_SEAM_SCOPE_TYPE
public static final String TAGGEDVALUE_SEAM_COMPONENT_ROLE_NAME
public static final String TAGGEDVALUE_SEAM_COMPONENT_ROLE_SCOPE_TYPE
public static final String TAGGEDVALUE_SEAM_COMPONENT_INTERCEPT
public static final String TAGGEDVALUE_SEAM_COMPONENT_JNDI_NAME
public static final String TAGGEDVALUE_SEAM_COMPONENT_CONVERSIONAL_IFNOTBEGUNOUTCOME
public static final String TAGGEDVALUE_SEAM_COMPONENT_STARTUP_DEPENDS
public static final String TAGGEDVALUE_SEAM_COMPONENT_SYNCHRONIZED_TIMEOUT
public static final String TAGGEDVALUE_SEAM_COMPONENT_READONLY
public static final String TAGGEDVALUE_SEAM_BIJECTION_IN_CREATE
public static final String TAGGEDVALUE_SEAM_BIJECTION_IN_VALUE
public static final String TAGGEDVALUE_SEAM_BIJECTION_OUT_VALUE
public static final String TAGGEDVALUE_SEAM_BIJECTION_OUT_SCOPE_TYPE
public static final String TAGGEDVALUE_SEAM_BIJECTION_FACTORY_VALUE
public static final String TAGGEDVALUE_SEAM_BIJECTION_FACTORY_SCOPE_TYPE
public static final String TAGGEDVALUE_SEAM_BIJECTION_LOGGER_VALUE
public static final String TAGGEDVALUE_SEAM_BIJECTION_REQUEST_PARAMETER_VALUE
public static final String TAGGEDVALUE_SEAM_LIFECYCLE_OBSERVER_EVENT
public static final String TAGGEDVALUE_SEAM_CONVERSATION_BEGIN_IF_OUTCOME
public static final String TAGGEDVALUE_SEAM_CONVERSATION_BEGIN_JOIN
public static final String TAGGEDVALUE_SEAM_CONVERSATION_BEGIN_NESTED
public static final String TAGGEDVALUE_SEAM_CONVERSATION_BEGIN_FLUSH_MODE
public static final String TAGGEDVALUE_SEAM_CONVERSATION_BEGIN_PAGEFLOW
public static final String TAGGEDVALUE_SEAM_CONVERSATION_END_IF_OUTCOME
public static final String TAGGEDVALUE_SEAM_CONVERSATION_END_BEFORE_REDIRECT
public static final String TAGGEDVALUE_SEAM_CONVERSATION_END_EVEN_IF_EXCEPTION
public static final String TAGGEDVALUE_SEAM_CONVERSATION_START_TASK_ID_PARAMETER
public static final String TAGGEDVALUE_SEAM_CONVERSATION_START_TASK_FLUSH_MODE
public static final String TAGGEDVALUE_SEAM_CONVERSATION_BEGIN_TASK_ID_PARAMETER
public static final String TAGGEDVALUE_SEAM_CONVERSATION_BEGIN_TASK_FLUSH_MODE
public static final String TAGGEDVALUE_SEAM_CONVERSATION_END_TASK_TRANSITION_NAME
public static final String TAGGEDVALUE_SEAM_CONVERSATION_END_TASK_IF_OUTCOME
public static final String TAGGEDVALUE_SEAM_CONVERSATION_END_TASK_BEFORE_REDIRECT
public static final String TAGGEDVALUE_SEAM_CONVERSATION_CREATE_PROCESS_DEFINITION
public static final String TAGGEDVALUE_SEAM_CONVERSATION_RESUME_PROCESS_PROCESS_ID_PARAMETER
public static final String TAGGEDVALUE_SEAM_TRANSACTION_ROLLBACK_IF_OUTCOME
public static final String TAGGEDVALUE_SEAM_VALIDATION_OUTCOME
public static final String TAGGEDVALUE_SEAM_VALIDATION_REFRESH_ENTITIES
public static final String TAGGEDVALUE_SEAM_WEBREMOTE_EXCLUDE
public static final String TAGGEDVALUE_SEAM_INTERCEPTOR_STATELESS
public static final String TAGGEDVALUE_SEAM_INTERCEPTOR_TYPE
public static final String TAGGEDVALUE_SEAM_INTERCEPTOR_AROUND
public static final String TAGGEDVALUE_SEAM_INTERCEPTOR_WITHIN
public static final String TAGGEDVALUE_SEAM_DATA_DATAMODEL_VALUE
public static final String TAGGEDVALUE_SEAM_DATA_DATAMODEL_SCOPE_TYPE
public static final String TAGGEDVALUE_SEAM_DATA_DATAMODEL_SELECTION_VALUE
public static final String TAGGEDVALUE_SEAM_DATA_DATAMODEL_SELECTION_INDEX_VALUE
public static final String TAGGEDVALUE_SEAM_DATA_DATABINDER_CLASS
public static final String TAGGEDVALUE_SEAM_DATA_DATASELECTOR_CLASS
public EJB3Profile()
Copyright © 2006–2014 AndroMDA.org. All rights reserved.