Class WebRuleSet
- java.lang.Object
- 
- org.apache.tomcat.util.descriptor.web.WebRuleSet
 
- 
- 
Field SummaryFields Modifier and Type Field Description protected org.apache.tomcat.util.descriptor.web.AbsoluteOrderingRuleabsoluteOrderingTheAbsoluteOrderingRulerule used to parse the web.xmlprotected booleanfragmentFlag that indicates if this ruleset is for a web-fragment.xml file or for a web.xml file.protected java.lang.StringfullPrefixThe full pattern matching prefix, including the webapp or web-fragment component, to use for matching elementsprotected org.apache.tomcat.util.descriptor.web.SetJspConfigjspConfigTheSetJspConfigrule used to parse the web.xmlprotected org.apache.tomcat.util.descriptor.web.SetLoginConfigloginConfigTheSetLoginConfigrule used to parse the web.xmlprotected org.apache.tomcat.util.descriptor.web.NameRulenameTheNameRulerule used to parse the web.xmlprotected java.lang.StringprefixThe matching pattern prefix to use for recognizing our elements.protected org.apache.tomcat.util.descriptor.web.RelativeOrderingRulerelativeOrderingTheRelativeOrderingRulerule used to parse the web.xmlprotected org.apache.tomcat.util.descriptor.web.SetSessionConfigsessionConfigTheSetSessionConfigrule used to parse the web.xmlprotected static StringManagersmThe string resources for this package.
 - 
Constructor SummaryConstructors Constructor Description WebRuleSet()Construct an instance of thisRuleSetwith the default matching pattern prefix and default fragment setting.WebRuleSet(boolean fragment)Construct an instance of thisRuleSetwith the default matching pattern prefix.WebRuleSet(java.lang.String prefix, boolean fragment)Construct an instance of thisRuleSetwith the specified matching pattern prefix.
 - 
Method SummaryAll 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).protected voidconfigureInjectionRules(Digester digester, java.lang.String base)protected voidconfigureNamingRules(Digester digester)voidrecycle()Reset counter used for validating the web.xml file.
 
- 
- 
- 
Field Detail- 
smprotected static final StringManager sm The string resources for this package.
 - 
prefixprotected final java.lang.String prefix The matching pattern prefix to use for recognizing our elements.
 - 
fullPrefixprotected final java.lang.String fullPrefix The full pattern matching prefix, including the webapp or web-fragment component, to use for matching elements
 - 
fragmentprotected final boolean fragment Flag that indicates if this ruleset is for a web-fragment.xml file or for a web.xml file.
 - 
sessionConfigprotected final org.apache.tomcat.util.descriptor.web.SetSessionConfig sessionConfig TheSetSessionConfigrule used to parse the web.xml
 - 
loginConfigprotected final org.apache.tomcat.util.descriptor.web.SetLoginConfig loginConfig TheSetLoginConfigrule used to parse the web.xml
 - 
jspConfigprotected final org.apache.tomcat.util.descriptor.web.SetJspConfig jspConfig TheSetJspConfigrule used to parse the web.xml
 - 
nameprotected final org.apache.tomcat.util.descriptor.web.NameRule name TheNameRulerule used to parse the web.xml
 - 
absoluteOrderingprotected final org.apache.tomcat.util.descriptor.web.AbsoluteOrderingRule absoluteOrdering TheAbsoluteOrderingRulerule used to parse the web.xml
 - 
relativeOrderingprotected final org.apache.tomcat.util.descriptor.web.RelativeOrderingRule relativeOrdering TheRelativeOrderingRulerule used to parse the web.xml
 
- 
 - 
Constructor Detail- 
WebRuleSetpublic WebRuleSet() Construct an instance of thisRuleSetwith the default matching pattern prefix and default fragment setting.
 - 
WebRuleSetpublic WebRuleSet(boolean fragment) Construct an instance of thisRuleSetwith the default matching pattern prefix.- Parameters:
- fragment-- trueif this is a web fragment
 
 - 
WebRuleSetpublic WebRuleSet(java.lang.String prefix, boolean fragment)Construct an instance of thisRuleSetwith the specified matching pattern prefix.- Parameters:
- prefix- Prefix for matching pattern rules (including the trailing slash character)
- fragment-- trueif this is a web fragment
 
 
- 
 - 
Method Detail- 
addRuleInstancespublic 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 interface- RuleSet
- Parameters:
- digester- Digester instance to which the new Rule instances should be added.
 
 - 
configureNamingRulesprotected void configureNamingRules(Digester digester) 
 - 
configureInjectionRulesprotected void configureInjectionRules(Digester digester, java.lang.String base) 
 - 
recyclepublic void recycle() Reset counter used for validating the web.xml file.
 
- 
 
-