Class JBossWebXmlTag
- java.lang.Object
-
- org.codehaus.cargo.module.DescriptorTag
-
- org.codehaus.cargo.module.webapp.jboss.JBossWebXmlTag
-
public final class JBossWebXmlTag extends DescriptorTag
Represents the various top-level tags in a JBoss web deployment descriptor as a typesafe enumeration.
-
-
Field Summary
Fields Modifier and Type Field Description static String
CONTEXT_ROOT
Element name 'context-root'.static String
EJB_LOCAL_REF
Element name 'ejb-local-ref'.static String
EJB_REF
Element name 'ejb-ref'.static String
EJB_REF_NAME
Element name 'ejb-ref-name'.static String
JNDI_NAME
Element name 'jndi-name'.static String
LOCAL_JNDI_NAME
Element name 'local-jndi-name'.static String
VIRTUAL_HOST
Element name 'virtual-host'.
-
Constructor Summary
Constructors Modifier Constructor Description protected
JBossWebXmlTag(DescriptorType type, String tagName)
Constructor.protected
JBossWebXmlTag(DescriptorType type, String tagName, boolean isMultipleAllowed)
Constructor.
-
Method Summary
-
Methods inherited from class org.codehaus.cargo.module.DescriptorTag
create, equals, getDescriptorType, getIdentifier, getImplementationClass, getTagName, getTagNamespace, hashCode, isMultipleAllowed, toString
-
-
-
-
Field Detail
-
CONTEXT_ROOT
public static final String CONTEXT_ROOT
Element name 'context-root'.- See Also:
- Constant Field Values
-
VIRTUAL_HOST
public static final String VIRTUAL_HOST
Element name 'virtual-host'.- See Also:
- Constant Field Values
-
EJB_REF
public static final String EJB_REF
Element name 'ejb-ref'.- See Also:
- Constant Field Values
-
EJB_LOCAL_REF
public static final String EJB_LOCAL_REF
Element name 'ejb-local-ref'.- See Also:
- Constant Field Values
-
EJB_REF_NAME
public static final String EJB_REF_NAME
Element name 'ejb-ref-name'.- See Also:
- Constant Field Values
-
JNDI_NAME
public static final String JNDI_NAME
Element name 'jndi-name'.- See Also:
- Constant Field Values
-
LOCAL_JNDI_NAME
public static final String LOCAL_JNDI_NAME
Element name 'local-jndi-name'.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
JBossWebXmlTag
protected JBossWebXmlTag(DescriptorType type, String tagName, boolean isMultipleAllowed)
Constructor.- Parameters:
type
- Descriptor typetagName
- The tag name of the elementisMultipleAllowed
- Whether the element may occur multiple times in the descriptor
-
JBossWebXmlTag
protected JBossWebXmlTag(DescriptorType type, String tagName)
Constructor.- Parameters:
type
- Descriptor typetagName
- The tag name of the element
-
-