Class XmlEncodingBase
- java.lang.Object
-
- org.apache.tomcat.util.descriptor.web.XmlEncodingBase
-
- Direct Known Subclasses:
ErrorPage
,FilterMap
,JspPropertyGroup
,LoginConfig
,SecurityCollection
,SecurityConstraint
,WebXml
public abstract class XmlEncodingBase extends java.lang.Object
Base class for those elements that need to track the encoding used in the source XML.
-
-
Constructor Summary
Constructors Constructor Description XmlEncodingBase()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.nio.charset.Charset
getCharset()
Obtain the character encoding of the XML source that was used to populated this object.void
setCharset(java.nio.charset.Charset charset)
-
-
-
Method Detail
-
setCharset
public void setCharset(java.nio.charset.Charset charset)
-
getCharset
public java.nio.charset.Charset getCharset()
Obtain the character encoding of the XML source that was used to populated this object.- Returns:
- The character encoding of the associated XML source or
UTF-8
if the encoding could not be determined
-
-