Class WebXmlParser
- java.lang.Object
-
- org.apache.tomcat.util.descriptor.web.WebXmlParser
-
public class WebXmlParser extends java.lang.ObjectParser for web.xml and web-fragment.xml deployment descriptors.
-
-
Constructor Summary
Constructors Constructor Description WebXmlParser(boolean namespaceAware, boolean validation, boolean blockExternal)Constructs a new WebXmlParser.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanparseWebXml(java.net.URL url, WebXml dest, boolean fragment)Parse a web descriptor at a location.booleanparseWebXml(org.xml.sax.InputSource source, WebXml dest, boolean fragment)Parses a web descriptor from an InputSource.voidsetClassLoader(java.lang.ClassLoader classLoader)Sets the ClassLoader to be used for creating descriptor objects.
-
-
-
Constructor Detail
-
WebXmlParser
public WebXmlParser(boolean namespaceAware, boolean validation, boolean blockExternal)Constructs a new WebXmlParser.- Parameters:
namespaceAware- Whether the parser is namespace awarevalidation- Whether validation is enabledblockExternal- Whether external entities are blocked
-
-
Method Detail
-
parseWebXml
public boolean parseWebXml(java.net.URL url, WebXml dest, boolean fragment) throws java.io.IOExceptionParse a web descriptor at a location.- Parameters:
url- the location; if null no load will be attempteddest- the instance to be populated by the parse operationfragment- indicate if the descriptor is a web-app or web-fragment- Returns:
- true if the descriptor was successfully parsed
- Throws:
java.io.IOException- if there was a problem reading from the URL
-
parseWebXml
public boolean parseWebXml(org.xml.sax.InputSource source, WebXml dest, boolean fragment)Parses a web descriptor from an InputSource.- Parameters:
source- The input sourcedest- The WebXml instance to populatefragment- Whether this is a web-fragment- Returns:
trueif parsing was successful
-
setClassLoader
public void setClassLoader(java.lang.ClassLoader classLoader)
Sets the ClassLoader to be used for creating descriptor objects.- Parameters:
classLoader- the ClassLoader to be used for creating descriptor objects
-
-