Class ResinWebXmlTag
- java.lang.Object
-
- org.codehaus.cargo.module.DescriptorTag
-
- org.codehaus.cargo.module.webapp.resin.ResinWebXmlTag
-
public final class ResinWebXmlTag extends DescriptorTag
Represents the various top-level tags in a Resin context web deployment descriptor as a typesafe enumeration.
-
-
Field Summary
Fields Modifier and Type Field Description static String
DIRECTORY_SERVLET
Elements of directory-servlet.static String
JNDI_LINK
Elements of jndi-link.static String
RESOURCE_REFERENCE
Elements of resource-ref.static String
SESSION_CONFIG
Elements of session-config.static String
SYSTEM_PROPERTY
Attribute name 'path'.
-
Constructor Summary
Constructors Modifier Constructor Description protected
ResinWebXmlTag(DescriptorType type, String tagName)
Constructor.protected
ResinWebXmlTag(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
-
SYSTEM_PROPERTY
public static final String SYSTEM_PROPERTY
Attribute name 'path'.- See Also:
- Constant Field Values
-
RESOURCE_REFERENCE
public static final String RESOURCE_REFERENCE
Elements of resource-ref.- See Also:
- Constant Field Values
-
SESSION_CONFIG
public static final String SESSION_CONFIG
Elements of session-config.- See Also:
- Constant Field Values
-
DIRECTORY_SERVLET
public static final String DIRECTORY_SERVLET
Elements of directory-servlet.- See Also:
- Constant Field Values
-
JNDI_LINK
public static final String JNDI_LINK
Elements of jndi-link.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ResinWebXmlTag
protected ResinWebXmlTag(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
-
ResinWebXmlTag
protected ResinWebXmlTag(DescriptorType type, String tagName)
Constructor.- Parameters:
type
- Descriptor typetagName
- The tag name of the element
-
-