Class FilterMapping
- java.lang.Object
-
- org.jdom2.Content
-
- org.jdom2.Element
-
- org.codehaus.cargo.module.DescriptorElement
-
- org.codehaus.cargo.module.webapp.elements.WebXmlElement
-
- org.codehaus.cargo.module.webapp.elements.FilterMapping
-
- All Implemented Interfaces:
Serializable
,Cloneable
,org.jdom2.NamespaceAware
,org.jdom2.Parent
public class FilterMapping extends WebXmlElement
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FilterMapping(WebXmlTag tag)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addDispatcher(String dispatcherName)
Add a dispatcher element.String[]
getDispatchers()
String
getFilterName()
Get the filter name.String
getServletName()
Get the servlet name.String
getUrlPattern()
Get the URL Pattern.void
setFilterName(String filterName)
Set the filter name.void
setServletName(String servletName)
Set the servlet name.void
setUrlPattern(String urlPattern)
Set the URL Pattern.-
Methods inherited from class org.codehaus.cargo.module.webapp.elements.WebXmlElement
child
-
Methods inherited from class org.codehaus.cargo.module.DescriptorElement
getTag, setTag
-
Methods inherited from class org.jdom2.Element
addContent, addContent, addContent, addContent, addContent, addNamespaceDeclaration, canContainContent, clone, cloneContent, coalesceText, detach, getAdditionalNamespaces, getAttribute, getAttribute, getAttributes, getAttributesSize, getAttributeValue, getAttributeValue, getAttributeValue, getAttributeValue, getChild, getChild, getChildren, getChildren, getChildren, getChildText, getChildText, getChildTextNormalize, getChildTextNormalize, getChildTextTrim, getChildTextTrim, getContent, getContent, getContent, getContentSize, getDescendants, getDescendants, getName, getNamespace, getNamespace, getNamespacePrefix, getNamespacesInherited, getNamespacesInScope, getNamespacesIntroduced, getNamespaceURI, getQualifiedName, getText, getTextNormalize, getTextTrim, getValue, getXMLBaseURI, hasAdditionalNamespaces, hasAttributes, indexOf, isAncestor, isRootElement, removeAttribute, removeAttribute, removeAttribute, removeChild, removeChild, removeChildren, removeChildren, removeContent, removeContent, removeContent, removeContent, removeNamespaceDeclaration, setAttribute, setAttribute, setAttribute, setAttributes, setContent, setContent, setContent, setContent, setName, setNamespace, setText, sortAttributes, sortChildren, sortContent, sortContent, toString
-
Methods inherited from class org.jdom2.Content
equals, getCType, getDocument, getParent, getParentElement, hashCode, setParent
-
-
-
-
Constructor Detail
-
FilterMapping
public FilterMapping(WebXmlTag tag)
Constructor.- Parameters:
tag
- Web Xml Tag definition
-
-
Method Detail
-
getUrlPattern
public String getUrlPattern()
Get the URL Pattern.- Returns:
- URL Pattern
-
setUrlPattern
public void setUrlPattern(String urlPattern)
Set the URL Pattern.- Parameters:
urlPattern
- The URL Pattern
-
getFilterName
public String getFilterName()
Get the filter name.- Returns:
- The filter name
-
setFilterName
public void setFilterName(String filterName)
Set the filter name.- Parameters:
filterName
- The filter name
-
getServletName
public String getServletName()
Get the servlet name.- Returns:
- The filter name
-
setServletName
public void setServletName(String servletName)
Set the servlet name.- Parameters:
servletName
- The filter name
-
addDispatcher
public void addDispatcher(String dispatcherName)
Add a dispatcher element.- Parameters:
dispatcherName
- name of the dispatcher.
-
getDispatchers
public String[] getDispatchers()
- Returns:
- a list of dispatcher names.
-
-