public class AttachmentsImpl extends Object implements Attachments
| Modifier and Type | Field and Description |
|---|---|
protected String |
contentLocation
This is the content location as specified in SOAP with Attachments.
|
protected static org.apache.commons.logging.Log |
log |
protected MultiPartInputStream |
mpartStream
The actual stream to manage the multi-related input stream.
|
protected int |
sendtype
The form of the attachments, whether MIME or DIME.
|
protected SOAPPart |
soapPart
Field soapPart.
|
CIDprefix, SEND_TYPE_DEFAULT, SEND_TYPE_DIME, SEND_TYPE_MAX, SEND_TYPE_MIME, SEND_TYPE_MTOM, SEND_TYPE_NONE, SEND_TYPE_NOTSET| Constructor and Description |
|---|
AttachmentsImpl(Object intialContents,
String contentType,
String contentLocation)
Construct one of these on a parent Message.
|
| Modifier and Type | Method and Description |
|---|---|
Part |
addAttachmentPart(Part newPart)
Adds an existing attachment to this list.
|
Part |
createAttachmentPart()
Create a new attachment Part in this Message.
|
Part |
createAttachmentPart(Object datahandler)
Create a new attachment Part in this Message.
|
protected DimeMultiPart |
createDimeMessage()
Creates the DIME message
|
void |
dispose()
dispose of the attachments and their files; do not use the object
after making this call.
|
Part |
getAttachmentByReference(String reference)
This method should look at a refernce and determine if it is a CID: or
url to look for attachment.
|
int |
getAttachmentCount()
This is the number of attachments.
|
Collection |
getAttachments()
This method will return all attachments as a collection.
|
Iterator |
getAttachments(MimeHeaders headers)
Retrieves all the
AttachmentPart objects
that have header entries that match the specified headers. |
long |
getContentLength()
Get the content length of the stream.
|
String |
getContentType()
Gets the content type for the whole stream.
|
IncomingAttachmentStreams |
getIncomingAttachmentStreams()
Once this method is called, attachments can only be accessed via the InputStreams.
|
Part |
getRootPart()
From the complex stream return the root part.
|
int |
getSendType()
Determine if an object is to be treated as an attchment.
|
static int |
getSendType(String value)
Determine how an object typically sent as attachments are to
be represented.
|
static String |
getSendTypeString(int value)
For a given sendType value, return a string representation.
|
boolean |
isAttachment(Object value)
Determine if an object is to be treated as an attchment.
|
void |
removeAllAttachments()
Removes all
AttachmentPart objects that have
been added to this SOAPMessage object. |
Part |
removeAttachmentPart(String reference)
This method uses getAttacmentByReference() to look for attachment.
|
void |
setAttachmentParts(Collection parts)
Add the collection of parts.
|
void |
setRootPart(Part newRoot)
Sets the root part of this multipart block
|
void |
setSendType(int sendtype)
Set the format for attachments.
|
void |
writeContentToStream(OutputStream os)
Write the content to the stream.
|
protected static org.apache.commons.logging.Log log
protected SOAPPart soapPart
protected MultiPartInputStream mpartStream
protected int sendtype
protected String contentLocation
public AttachmentsImpl(Object intialContents, String contentType, String contentLocation) throws AxisFault
intialContents - should be anything but today only a stream is
supported.contentType - The mime content type of the stream for transports
that provide it.contentLocation - AxisFaultpublic Part removeAttachmentPart(String reference) throws AxisFault
removeAttachmentPart in interface Attachmentsreference - The reference that referers to an attachment.AxisFaultpublic Part addAttachmentPart(Part newPart) throws AxisFault
addAttachmentPart in interface AttachmentsnewPart - new part to addAxisFaultpublic Part createAttachmentPart(Object datahandler) throws AxisFault
AttachmentscreateAttachmentPart in interface Attachmentsdatahandler - The part that is referencedAxisFaultpublic void setAttachmentParts(Collection parts) throws AxisFault
setAttachmentParts in interface Attachmentsparts - AxisFaultpublic Part getAttachmentByReference(String reference) throws AxisFault
getAttachmentByReference in interface Attachmentsreference - The reference in the xml that referers to an attachment.AxisFaultpublic Collection getAttachments() throws AxisFault
getAttachments in interface AttachmentsAxisFaultpublic Part getRootPart()
getRootPart in interface AttachmentsPartpublic void setRootPart(Part newRoot)
AttachmentssetRootPart in interface AttachmentsnewRoot - the new root Partpublic long getContentLength()
throws AxisFault
getContentLength in interface AttachmentsAxisFaultprotected DimeMultiPart createDimeMessage() throws AxisFault
AxisFault - if the part could not be builtpublic void writeContentToStream(OutputStream os) throws AxisFault
writeContentToStream in interface Attachmentsos - AxisFaultpublic String getContentType() throws AxisFault
getContentType in interface AttachmentsAxisFaultpublic int getAttachmentCount()
getAttachmentCount in interface Attachmentspublic boolean isAttachment(Object value)
isAttachment in interface Attachmentsvalue - the value that is to be determined if
its an attachment.public void removeAllAttachments()
AttachmentPart objects that have
been added to this SOAPMessage object.
This method does not touch the SOAP part.
removeAllAttachments in interface Attachmentspublic Iterator getAttachments(MimeHeaders headers)
AttachmentPart objects
that have header entries that match the specified headers.
Note that a returned attachment could have headers in
addition to those specified.getAttachments in interface Attachmentsheaders - a MimeHeaders
object containing the MIME headers for which to
searchpublic Part createAttachmentPart() throws AxisFault
createAttachmentPart in interface AttachmentsAxisFaultpublic void setSendType(int sendtype)
AttachmentssetSendType in interface Attachmentssendtype - the format to send.
SEND_TYPE_MIME for Multipart Releated Mail type attachments.
SEND_TYPE_DIME for DIME type attachments.public int getSendType()
AttachmentsgetSendType in interface Attachmentspublic void dispose()
dispose in interface Attachmentspublic static int getSendType(String value)
value - a String representing a sending type, treated in a
case-insensetive mannerint send type codepublic static String getSendTypeString(int value)
value - a type code integerString representation of valuepublic IncomingAttachmentStreams getIncomingAttachmentStreams()
getIncomingAttachmentStreams in interface AttachmentsCopyright © The Apache Software Foundation. All Rights Reserved.