Class SafeXMLParser
- java.lang.Object
-
- com.atlassian.confluence.rpc.xmlrpc.SafeXMLParser
-
- All Implemented Interfaces:
Parser
@Deprecated public class SafeXMLParser extends Object implements Parser
Deprecated.since 7.20 No replacement. Should not be used outside of the xml-rpc plumbing.XML Parser class that wraps the underlying imlementation ensuring the parser is safely constructed.- See Also:
XmlRpcServer
-
-
Constructor Summary
Constructors Constructor Description SafeXMLParser()Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidparse(String s)Deprecated.voidparse(InputSource inputSource)Deprecated.voidsetDocumentHandler(DocumentHandler documentHandler)Deprecated.voidsetDTDHandler(DTDHandler dtdHandler)Deprecated.voidsetEntityResolver(EntityResolver entityResolver)Deprecated.voidsetErrorHandler(ErrorHandler errorHandler)Deprecated.voidsetLocale(Locale locale)Deprecated.
-
-
-
Method Detail
-
parse
public void parse(InputSource inputSource) throws SAXException, IOException
Deprecated.- Specified by:
parsein interfaceParser- Throws:
SAXExceptionIOException
-
parse
public void parse(String s) throws SAXException, IOException
Deprecated.- Specified by:
parsein interfaceParser- Throws:
SAXExceptionIOException
-
setDocumentHandler
public void setDocumentHandler(DocumentHandler documentHandler)
Deprecated.- Specified by:
setDocumentHandlerin interfaceParser
-
setEntityResolver
public void setEntityResolver(EntityResolver entityResolver)
Deprecated.- Specified by:
setEntityResolverin interfaceParser
-
setDTDHandler
public void setDTDHandler(DTDHandler dtdHandler)
Deprecated.- Specified by:
setDTDHandlerin interfaceParser
-
setLocale
public void setLocale(Locale locale) throws SAXException
Deprecated.- Specified by:
setLocalein interfaceParser- Throws:
SAXException
-
setErrorHandler
public void setErrorHandler(ErrorHandler errorHandler)
Deprecated.- Specified by:
setErrorHandlerin interfaceParser
-
-