Implemented in class xdoclet.modules.ejb.home.HomeTagsHandler.
Evaluates the body block if current method is a create method. Create methods should have ejb:create-method defined.
[superclasses] |
Traverse superclasses too. With false value used in remote/local home interface templates. Default is False. |
Evaluates the body block if current create method's ejbPostCreate method does not exist.
Evaluates the body block if current method is a home method. Home methods should have ejb:home-method defined.
[superclasses] |
Traverse superclasses too. With false value used in remote/local home interface templates. Default is False. |
Evaluates the body block if current method is not an ejbRemove method.
Evaluates the body block if current method is a ejbFind method.
[superclasses] |
Traverse superclasses too. With false value used in remote/local home interface templates. Default is False. |
Iterates over all home methods of specified type (finder or create method) defined in a class and super classes.
tagName |
The tag name for the method type to iterate over. Valid Values = {ejb:finder,ejb:create-method} |
[superclasses] |
If true then traverse superclasses also, otherwise look up the tag in current concrete class only. Valid Values = {true,false} |
[tagKey] |
A tag property that will be used as a unique key. This is used to avoid duplicate code due to similar tags in superclasses. |
Whether current finder return collection.
Whether current finder return enumeration.
Whether current finder return interface.
Evaluates the body block for each EJBean derived from one of the three EJB types: EntityBean, SessionBean or MessageDrivenBean.
Evaluates the body block if current bean is a concrete bean meaning the generate parameter of ejb:bean is either not specified or equals to "true", otherwise the bean is just an abstract base class bean not meant to be used as a EJBean but serve as the base for other EJBeans.
Returns the full qualified local or remote home interface name for the bean, depending on the value of type parameter.
type |
Specifies the type of component home interface. Valid Values = {remote,local} |
Returns the appropriate ejbPostCreate method name for the current ejbCreate method.
[prefixWithEjbSlash] |
Specifies whether to prefix it with ejb/ or not. False by default. Valid Values = {true,false} |
type |
Specifies if we want the jndi name value for local or remote lookup. Valid Values = {remote,local} |
type |
Specifies if we want the jndi name value for local or remote lookup. Valid Values = {remote,local} |
Returns the name of the class home interface extends.
Return permission for current home method.
Return type of current home method.
generates name for finder utility class backing current finder
Return name of current home method.
Return parameter list definition (types and names) for current home method.
Return parameter list (names only) for current home method.
Return exceptions for current home method.
Returns the name of EJB ref.
Returns the name of EJB ref.
Returns the name of current EJB bean.
[prefixWithEjbSlash] |
Specifies whether to prefix it with ejb/ or not. False by default. Valid Values = {true,false} |
Returns the name of EJB ref.
Returns the symbolic name of the current class. For an EJBean it's the value of ejb:bean's name parameter.
Returns short version of ejbName(). Example: "foo.bar.MyBean" ->"MyBean", "foo/bar/MyBean" ->"MyBean"
Returns Bean type : "Entity", "Session" or "Message Driven".
Returns the full-qualified name of the current class's concrete class. This is the class that is generated and is derived from current class.
Returns unique id for current ejb.