public class AttachmentMarshallerAdapter extends Object implements XMLAttachmentMarshaller
Purpose:Provide an implementation of the TopLink OX XMLAttachmentMarshaller interface that wraps an implementation of the JAXB AttachmentMarshaller interface.
Responsibilities:
This class allows TopLink OXM to do attachment marshalling callback events to a JAXB 2.0 Listener without adding a dependancy on JAXB 2.0 into core TopLink. The Adapter class wraps a javax.xml.bin.attachment.AttachmentMarshaller and passes on the events as they're raised
AttachmentMarshaller,
XMLAttachmentMarshaller| Constructor and Description |
|---|
AttachmentMarshallerAdapter(AttachmentMarshaller a) |
| Modifier and Type | Method and Description |
|---|---|
String |
addMtomAttachment(byte[] data,
int offset,
int length,
String mimeType,
String elementName,
String namespace) |
String |
addMtomAttachment(DataHandler data,
String elementName,
String namespaceURI) |
String |
addSwaRefAttachment(byte[] data,
int offset,
int length) |
String |
addSwaRefAttachment(DataHandler data) |
AttachmentMarshaller |
getAttachmentMarshaller() |
boolean |
isXOPPackage() |
public AttachmentMarshallerAdapter(AttachmentMarshaller a)
public boolean isXOPPackage()
isXOPPackage in interface XMLAttachmentMarshallerpublic String addMtomAttachment(DataHandler data, String elementName, String namespaceURI)
addMtomAttachment in interface XMLAttachmentMarshallerpublic String addMtomAttachment(byte[] data, int offset, int length, String mimeType, String elementName, String namespace)
addMtomAttachment in interface XMLAttachmentMarshallerpublic String addSwaRefAttachment(DataHandler data)
addSwaRefAttachment in interface XMLAttachmentMarshallerpublic String addSwaRefAttachment(byte[] data, int offset, int length)
addSwaRefAttachment in interface XMLAttachmentMarshallerpublic AttachmentMarshaller getAttachmentMarshaller()