Interface XMLAttachmentMarshaller

All Known Implementing Classes:
AttachmentMarshallerAdapter

public interface XMLAttachmentMarshaller

Purpose: Provides an interface through which EclipseLink can allow a user to do special handling for Binary Data. This is used for fields mapped using an XMLBinaryDataMapping to retrieve an id to be marshaled in place of the binary object. This id will be passed into an XMLAttachmentUnmarshaller when the document is unmarshalled to retrieve the original data. If isXOPPackage returns false, then no other methods on this interface will be called, and it will be assumed that all binary mapped fields should be inlined as base64.

See Also:
  • Method Details

    • addMtomAttachment

      String addMtomAttachment(jakarta.activation.DataHandler data, String elementName, String namespace)
    • addSwaRefAttachment

      String addSwaRefAttachment(jakarta.activation.DataHandler data)
    • addMtomAttachment

      String addMtomAttachment(byte[] data, int start, int length, String mimeType, String elementName, String namespace)
    • addSwaRefAttachment

      String addSwaRefAttachment(byte[] data, int start, int length)
    • isXOPPackage

      boolean isXOPPackage()