Package org.jclouds.aws.xml
Class ErrorHandler
- java.lang.Object
-
- org.xml.sax.helpers.DefaultHandler
-
- org.jclouds.http.functions.ParseSax.HandlerWithResult<AWSError>
-
- org.jclouds.aws.xml.ErrorHandler
-
- All Implemented Interfaces:
InvocationContext<ParseSax.HandlerWithResult<AWSError>>
,ContentHandler
,DTDHandler
,EntityResolver
,ErrorHandler
public class ErrorHandler extends ParseSax.HandlerWithResult<AWSError>
Parses the error from the Amazon S3 REST API.
-
-
Constructor Summary
Constructors Constructor Description ErrorHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
characters(char[] ch, int start, int length)
void
endElement(String uri, String name, String qName)
AWSError
getResult()
-
Methods inherited from class org.jclouds.http.functions.ParseSax.HandlerWithResult
getRequest, setContext
-
Methods inherited from class org.xml.sax.helpers.DefaultHandler
endDocument, endPrefixMapping, error, fatalError, ignorableWhitespace, notationDecl, processingInstruction, resolveEntity, setDocumentLocator, skippedEntity, startDocument, startElement, startPrefixMapping, unparsedEntityDecl, warning
-
-
-
-
Method Detail
-
getResult
public AWSError getResult()
- Specified by:
getResult
in classParseSax.HandlerWithResult<AWSError>
-
endElement
public void endElement(String uri, String name, String qName)
- Specified by:
endElement
in interfaceContentHandler
- Overrides:
endElement
in classDefaultHandler
-
characters
public void characters(char[] ch, int start, int length)
- Specified by:
characters
in interfaceContentHandler
- Overrides:
characters
in classDefaultHandler
-
-