Class AttachmentFactory

java.lang.Object
oracle.soa.api.message.AttachmentFactory

public abstract class AttachmentFactory extends Object
Creates Attachment instances, which can be added to a Message.

Example:

 
        Attachment attachment =
        AttachmentFactory.getInstance().createAttachment("xyz",
                                                         "plain/text; charset=us-ascii",
                                                         "Attachment Content".getBytes("us-ascii"));
        message.addAttachment(attachment);
  
  
  • Constructor Details

    • AttachmentFactory

      public AttachmentFactory()
  • Method Details

    • getInstance

      public static AttachmentFactory getInstance()
    • createAttachment

      public abstract Attachment createAttachment(String contentId, String contentType, byte[] content)
      Creates a message attachment
      Parameters:
      contentId - the Content-ID value of the attachment; may be null
      contentType - the Content-Type value of the attachment; may be null
      content - the attachment content
      Returns:
      An Attachment object
    • createAttachment

      public abstract Attachment createAttachment(String contentId, String contentType, String partName, byte[] content, String transferEncoding)
      Creates a message attachment
      Parameters:
      contentId - the Content-ID value of the attachment; may be null
      contentType - the Content-Type value of the attachment; may be null
      partName - the partName this payload maps to.
      content - the attachment content
      transferEncoding - the transfer encoding to be used for the attachment
      Returns:
      An Attachment object
    • createAttachment

      public abstract Attachment createAttachment(String contentId, String contentType, InputStream content)
      Creates a message attachment
      Parameters:
      contentId - the Content-ID value of the attachment; may be null
      contentType - the Content-Type value of the attachment; may be null
      content - the attachment content
      Returns:
      An Attachment object
    • createAttachment

      public abstract Attachment createAttachment(String contentId, String contentType, InputStream content, String transferEncoding)
      Creates a message attachment
      Parameters:
      contentId - the Content-ID value of the attachment; may be null
      contentType - the Content-Type value of the attachment; may be null
      content - the attachment content
      transferEncoding - the transfer encoding to be used for the attachment
      Returns:
      An Attachment object