Package org.apache.catalina.startup
Class WebRuleSet
- java.lang.Object
-
- org.apache.tomcat.util.digester.RuleSetBase
-
- org.apache.catalina.startup.WebRuleSet
-
- All Implemented Interfaces:
RuleSet
public class WebRuleSet extends RuleSetBase
RuleSet for processing the contents of a web application deployment descriptor (
/WEB-INF/web.xml) resource.- Version:
- $Revision: 1.5 $ $Date: 2007/01/23 00:06:56 $
- Author:
- Craig R. McClanahan
-
-
Field Summary
Fields Modifier and Type Field Description protected org.apache.catalina.startup.SetJspConfigjspConfigTheSetJspConfigrule used to parse the web.xmlprotected org.apache.catalina.startup.SetLoginConfigloginConfigTheSetLoginConfigrule used to parse the web.xmlprotected StringprefixThe matching pattern prefix to use for recognizing our elements.protected org.apache.catalina.startup.SetSessionConfigsessionConfigTheSetSessionConfigrule used to parse the web.xml-
Fields inherited from class org.apache.tomcat.util.digester.RuleSetBase
namespaceURI
-
-
Constructor Summary
Constructors Constructor Description WebRuleSet()Construct an instance of thisRuleSetwith the default matching pattern prefix.WebRuleSet(String prefix)Construct an instance of thisRuleSetwith the specified matching pattern prefix.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddRuleInstances(Digester digester)Add the set of Rule instances defined in this RuleSet to the specifiedDigesterinstance, associating them with our namespace URI (if any).voidrecycle()Reset counter used for validating the web.xml file.-
Methods inherited from class org.apache.tomcat.util.digester.RuleSetBase
getNamespaceURI
-
-
-
-
Field Detail
-
prefix
protected String prefix
The matching pattern prefix to use for recognizing our elements.
-
sessionConfig
protected org.apache.catalina.startup.SetSessionConfig sessionConfig
TheSetSessionConfigrule used to parse the web.xml
-
loginConfig
protected org.apache.catalina.startup.SetLoginConfig loginConfig
TheSetLoginConfigrule used to parse the web.xml
-
jspConfig
protected org.apache.catalina.startup.SetJspConfig jspConfig
TheSetJspConfigrule used to parse the web.xml
-
-
Constructor Detail
-
WebRuleSet
public WebRuleSet()
Construct an instance of thisRuleSetwith the default matching pattern prefix.
-
WebRuleSet
public WebRuleSet(String prefix)
Construct an instance of thisRuleSetwith the specified matching pattern prefix.- Parameters:
prefix- Prefix for matching pattern rules (including the trailing slash character)
-
-
Method Detail
-
addRuleInstances
public void addRuleInstances(Digester digester)
Add the set of Rule instances defined in this RuleSet to the specified
Digesterinstance, associating them with our namespace URI (if any). This method should only be called by a Digester instance.- Specified by:
addRuleInstancesin interfaceRuleSet- Specified by:
addRuleInstancesin classRuleSetBase- Parameters:
digester- Digester instance to which the new Rule instances should be added.
-
recycle
public void recycle()
Reset counter used for validating the web.xml file.
-
-