@jonas Class Level Tag Usage

@jonas.bean (0..1)

The jonas.bean element declares the JOnAS specific information for an enterprise bean.

Applies to: All EJB types, class level

ParameterTypeApplicabilityDescriptionMandatory
ejb-nametextThe enterprise bean's name specified in the standard EJB deployment descriptor.true
jndi-nametextThe JNDI name of the enterprise bean's home. Concerns only the Entity and Session beans. Mandatory if version < 2.5, but optional for Session beans for 2.5 onwards.false

@jonas.ejb-ref (0..*)

The jonas.ejb-ref element declares the JOnAS specific information for a reference to another enterprise bean's home.

Applies to: All EJB types, class level

ParameterTypeApplicabilityDescriptionMandatory
ejb-ref-nametextThe name of the ejb reference specified in the standard EJB deployment descriptor.true
jndi-nametextThe JNDI name of the ejb.true

@jonas.finder-method-jdbc-mapping (0..1)

The jonas.finder-method-jdbc-mapping element declares the SQL WHERE clause associated to a finder method of a container-managed persistence entity.

Applies to: Entity Beans, class level

ParameterTypeApplicabilityDescriptionMandatory
method-nametextThe method's name.true
method-paramstextIdentifies a single method among multiple methods with an overloaded method name.false
jdbc-where-clausetextThe SQL WHERE clause.true

@jonas.is-modified-method-name (0..1)

The jonas.is-modified-method-name element specifies the name of the is-modified method of an entity.

Applies to: Entity Beans, class level

ParameterTypeApplicabilityDescriptionMandatory
is-modified-method-nametextThe name of the is-modified method of an entity.true

@jonas.jdbc-mapping (0..1)

The jonas.jdbc-mapping element declares the mapping of an entity with container-managed persistence to the underlying database.

Applies to: Entity Beans, class level

ParameterTypeApplicabilityDescriptionMandatory
jndi-nametextThe JNDI name of the datasource.true
automatic-pkboolTrue or False for use automatic generation of primary key.

Default value(s):

false
false
jdbc-table-nametextThe name of the relational table.true

@jonas.max-cache-size (0..1)

The jonas.max-cache-size element defines the max number of instances that can be hold in memory. The default value is infinite. This tag has only been present since version 2.4.

Applies to: Entity Beans, class level

ParameterTypeApplicabilityDescriptionMandatory
max-cache-sizeintThe max number of instances that can be hold in memory. The default value is infinite.true

@jonas.message-driven-destination (0..1)

The jonas.jonas-message-driven-destination element declares the JOnAS specific information for a the message driven bean destination.

Applies to: Message Driven Bean, class level

ParameterTypeApplicabilityDescriptionMandatory
jndi-nametextThe JNDI name of the message driven destination.true

@jonas.min-pool-size (0..1)

The jonas.min-pool-size element specify the number of instances that will be created to populate the pool when the bean is loaded for the first time. The default value is 0. This tag has only been present since version 2.4.

Applies to: Entity Beans, class level

ParameterTypeApplicabilityDescriptionMandatory
min-pool-sizeintThe number of instances that will be created to populate the pool when the bean is loaded for the first time. The default value is 0.true

@jonas.passivation-timeout (0..1)

The jonas.passivation-timeout element specifies the value of timeout in seconds for passivation of entity instances when no transaction are used.

Applies to: Entity Beans, class level

ParameterTypeApplicabilityDescriptionMandatory
passivation-timeoutintThe value of timeout in seconds for passivation of entity instances when no transaction are used.true

@jonas.resource (0..*)

The jonas.resource element declares the JOnAS specific information for an external resource referenced by a bean.

Applies to: All EJB types, class level

ParameterTypeApplicabilityDescriptionMandatory
res-ref-nametextThe name of the resource reference specified in the standard EJB deployment descriptor.true
jndi-nametextThe JNDI name of the resource.true

@jonas.resource-env (0..*)

The jonas.resource-env element declares the JOnAS specific information for an external resource environment referenced by a bean.

Applies to: All EJB types, class level

ParameterTypeApplicabilityDescriptionMandatory
resource-env-ref-nametextThe name of the resource environment reference specified in the standard EJB deployment descriptor.true
jndi-nametextThe JNDI name of the resource environment.true

@jonas.session-timeout (0..1)

The jonas.session-timeout element specifies the value of timeout in seconds for expiration of session instances.

Applies to: Session Beans, class level

ParameterTypeApplicabilityDescriptionMandatory
session-timeoutintThe value of timeout in seconds for expiration of session instances.true

@jonas.shared (0..1)

The jonas.shared element specifies if the bean state can be accessed outside JOnAS. This tag has only been present since version 2.4.

Applies to: Entity Beans, class level

ParameterTypeApplicabilityDescriptionMandatory
sharedboolTrue if the bean state can be accessed outside JOnAS. The default is False.true

@jonas Method Level Tag Usage

@jonas.cmp-field-jdbc-mapping (0..1)

The jonas.cmp-field-jdbc-mapping element declares the mapping of a container-managed field of an entity to a column of a relational table.

Applies to: Entity Beans, method level

ParameterTypeApplicabilityDescriptionMandatory
field-nametextThe field's name.true
jdbc-field-nametextThe column name of the relational table.true

@jonas Field Level Tag Usage