Package org.apache.uima.adapter.soap
Class BinaryDeserializer
- java.lang.Object
-
- org.xml.sax.helpers.DefaultHandler
-
- org.apache.axis.message.SOAPHandler
-
- org.apache.axis.encoding.DeserializerImpl
-
- org.apache.uima.adapter.soap.BinaryDeserializer
-
- All Implemented Interfaces:
Serializable
,javax.xml.rpc.encoding.Deserializer
,org.apache.axis.encoding.Callback
,org.apache.axis.encoding.Deserializer
,ContentHandler
,DTDHandler
,EntityResolver
,ErrorHandler
public class BinaryDeserializer extends org.apache.axis.encoding.DeserializerImpl
An Axis deserializer forSerializable
objects. The serialized bytes are Base-64 encoded for transport via SOAP.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description BinaryDeserializer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
characters(char[] ch, int start, int length)
void
onEndElement(String arg0, String arg1, org.apache.axis.encoding.DeserializationContext arg2)
void
onStartElement(String namespace, String localName, String prefix, Attributes attributes, org.apache.axis.encoding.DeserializationContext context)
void
startElement(String namespace, String localName, String prefix, Attributes attributes, org.apache.axis.encoding.DeserializationContext context)
-
Methods inherited from class org.apache.axis.encoding.DeserializerImpl
addChildDeserializer, componentsReady, endElement, getDefaultType, getMechanismType, getValue, getValue, getValueTargets, moveValueTargets, onStartChild, registerValueTarget, removeValueTargets, setChildValue, setDefaultType, setValue, setValue, valueComplete
-
Methods inherited from class org.xml.sax.helpers.DefaultHandler
endDocument, endElement, endPrefixMapping, error, fatalError, ignorableWhitespace, notationDecl, processingInstruction, resolveEntity, setDocumentLocator, skippedEntity, startDocument, startElement, startPrefixMapping, unparsedEntityDecl, warning
-
-
-
-
Method Detail
-
startElement
public void startElement(String namespace, String localName, String prefix, Attributes attributes, org.apache.axis.encoding.DeserializationContext context) throws SAXException
- Specified by:
startElement
in interfaceorg.apache.axis.encoding.Deserializer
- Overrides:
startElement
in classorg.apache.axis.encoding.DeserializerImpl
- Throws:
SAXException
-
onStartElement
public void onStartElement(String namespace, String localName, String prefix, Attributes attributes, org.apache.axis.encoding.DeserializationContext context) throws SAXException
- Specified by:
onStartElement
in interfaceorg.apache.axis.encoding.Deserializer
- Overrides:
onStartElement
in classorg.apache.axis.encoding.DeserializerImpl
- Throws:
SAXException
- See Also:
SOAPHandler.onStartChild(String, String, String, Attributes, DeserializationContext)
-
onEndElement
public void onEndElement(String arg0, String arg1, org.apache.axis.encoding.DeserializationContext arg2) throws SAXException
- Specified by:
onEndElement
in interfaceorg.apache.axis.encoding.Deserializer
- Overrides:
onEndElement
in classorg.apache.axis.encoding.DeserializerImpl
- Throws:
SAXException
- See Also:
Deserializer.onEndElement(java.lang.String, java.lang.String, org.apache.axis.encoding.DeserializationContext)
-
characters
public void characters(char[] ch, int start, int length) throws SAXException
- Specified by:
characters
in interfaceContentHandler
- Overrides:
characters
in classorg.apache.axis.message.SOAPHandler
- Throws:
SAXException
- See Also:
ContentHandler.characters(char[], int, int)
-
-