org.apache.cxf.aegis.type.basic
Class Base64Type

java.lang.Object
  extended by org.apache.cxf.aegis.type.Type
      extended by org.apache.cxf.aegis.type.basic.Base64Type

public class Base64Type
extends Type

Converts back and forth to byte[] objects. There is a co-routine between this class and the MTOM ByteArrayType. This class can accept either inline base64 or an MTOM attachment. It passes the problem over the ByteArrayType for the later.

Author:
Dan Diephouse

Field Summary
 
Fields inherited from class org.apache.cxf.aegis.type.Type
typeClass
 
Constructor Summary
Base64Type()
           
Base64Type(AbstractXOPType xopType)
           
 
Method Summary
 java.lang.Object readObject(MessageReader mreader, Context context)
          Read in the XML fragment and create an object.
 void writeObject(java.lang.Object object, MessageWriter writer, Context context)
          Writes the object to the MessageWriter.
 
Methods inherited from class org.apache.cxf.aegis.type.Type
addToSchemaElement, equals, getDependencies, getMaxOccurs, getMinOccurs, getSchemaType, getTypeClass, getTypeMapping, hashCode, hasMaxOccurs, hasMinOccurs, isAbstract, isComplex, isNillable, isWriteOuter, setAbstract, setNillable, setSchemaType, setTypeClass, setTypeMapping, setWriteOuter, toString, usesUtilityTypes, usesXmime, writeSchema
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

Base64Type

public Base64Type()

Base64Type

public Base64Type(AbstractXOPType xopType)
Method Detail

readObject

public java.lang.Object readObject(MessageReader mreader,
                                   Context context)
                            throws DatabindingException
Description copied from class: Type
Read in the XML fragment and create an object.

Specified by:
readObject in class Type
Returns:
Throws:
DatabindingException

writeObject

public void writeObject(java.lang.Object object,
                        MessageWriter writer,
                        Context context)
                 throws DatabindingException
Description copied from class: Type
Writes the object to the MessageWriter.

Specified by:
writeObject in class Type
Throws:
DatabindingException


Apache CXF