Apache CXF API

org.apache.cxf.message
Interface Attachment

All Known Implementing Classes:
AttachmentImpl

public interface Attachment

Author:
Dan Diephouse

Method Summary
 javax.activation.DataHandler getDataHandler()
           
 String getHeader(String name)
           
 Iterator<String> getHeaderNames()
           
 String getId()
           
 boolean isXOP()
          Whether or not this is an XOP package.
 

Method Detail

getDataHandler

javax.activation.DataHandler getDataHandler()

getId

String getId()
Returns:
The attachment id.

getHeader

String getHeader(String name)

getHeaderNames

Iterator<String> getHeaderNames()

isXOP

boolean isXOP()
Whether or not this is an XOP package. This will affect the serialization of the attachment. If true, it will be serialized as binary data, and not Base64Binary.

Returns:
true if this attachment is an XOP package

Apache CXF API

Apache CXF