XDoclet tags
| Tag | Attribute | Meaning
|
| @ejb.bean | | configuration applicable to the entire bean
|
| | name | The EJB and JNDI name for the bean
|
| | view-type | "local" for local CMP beans
|
| | type | "CMP" for CMP beans, "BMP" for BMP beans
|
| | schema | The abstract schema name for the bean, i.e. the
|
| | primkey-field | The primary key field for the bean
|
| @ejb.persistence | | persistence (SQL) configuration. For methods, marks the method as persistent
|
| | table-name | The actual database table for the bean
|
| | column-name | The actual column for the field
|
| @ejb.pk | | configuration for the primary key
|
| | class | The class of the primary key
|
| @ejb.home | | configuration for the home interface
|
| | generate | Which interfaces to generate: "local,remote"
|
| | local-class | The class name of the local home interface
|
| @ejb.interface | | configuration for the object interface
|
| | generate | Which interfaces to generate: "local,remote"
|
| | local-class | The class name of the local object interface
|
| @ejb.interface-method | | exposes the method as an interface
|
| @ejb.pk-field | | marks the method as the primary key
|
| @resin-ejb.bean | | bean-wide Resin specific configuration
|
| | read-only | Marks an entity bean as read-only
|
| | cache-size | Specifies the entity cache size
|
| | cache-timeout | Specifies the entity cache timeout
|