com.sun.xml.ws.encoding
Class StringDataContentHandler

java.lang.Object
  extended by com.sun.xml.ws.encoding.StringDataContentHandler
All Implemented Interfaces:
javax.activation.DataContentHandler

public class StringDataContentHandler
extends Object
implements javax.activation.DataContentHandler

JAF data content handler for text/plain --> String


Constructor Summary
StringDataContentHandler()
           
 
Method Summary
 Object getContent(javax.activation.DataSource ds)
           
 Object getTransferData(DataFlavor df, javax.activation.DataSource ds)
          return the Transfer Data of type DataFlavor from InputStream
 DataFlavor[] getTransferDataFlavors()
          return the DataFlavors for this DataContentHandler
 void writeTo(Object obj, String mimeType, OutputStream os)
          construct an object from a byte stream (similar semantically to previous method, we are deciding which one to support)
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

StringDataContentHandler

public StringDataContentHandler()
Method Detail

getTransferDataFlavors

public DataFlavor[] getTransferDataFlavors()
return the DataFlavors for this DataContentHandler

Specified by:
getTransferDataFlavors in interface javax.activation.DataContentHandler
Returns:
The DataFlavors.

getTransferData

public Object getTransferData(DataFlavor df,
                              javax.activation.DataSource ds)
return the Transfer Data of type DataFlavor from InputStream

Specified by:
getTransferData in interface javax.activation.DataContentHandler
Parameters:
df - The DataFlavor.
ds - The InputStream corresponding to the data.
Returns:
The constructed Object.

getContent

public Object getContent(javax.activation.DataSource ds)
Specified by:
getContent in interface javax.activation.DataContentHandler

writeTo

public void writeTo(Object obj,
                    String mimeType,
                    OutputStream os)
             throws IOException
construct an object from a byte stream (similar semantically to previous method, we are deciding which one to support)

Specified by:
writeTo in interface javax.activation.DataContentHandler
Throws:
IOException