Package org.apache.axiom.attachments
Class Attachments
java.lang.Object
org.apache.axiom.attachments.Attachments
- All Implemented Interfaces:
OMAttachmentAccessor
-
Constructor Summary
ConstructorsConstructorDescriptionUse this constructor when instantiating this to store the attachments set programatically through the SwA API.Attachments
(InputStream inStream, String contentTypeString) Sets file cache to false.Attachments
(InputStream inStream, String contentTypeString, boolean fileCacheEnable, String attachmentRepoDir, String fileThreshold) Moves the pointer to the beginning of the first MIME part.Attachments
(InputStream inStream, String contentTypeString, boolean fileCacheEnable, String attachmentRepoDir, String fileThreshold, int contentLength) Moves the pointer to the beginning of the first MIME part.Attachments
(LifecycleManager manager, InputStream inStream, String contentTypeString, boolean fileCacheEnable, String attachmentRepoDir, String fileThreshold) Moves the pointer to the beginning of the first MIME part.Attachments
(LifecycleManager manager, InputStream inStream, String contentTypeString, boolean fileCacheEnable, String attachmentRepoDir, String fileThreshold, int contentLength) Moves the pointer to the beginning of the first MIME part. -
Method Summary
Modifier and TypeMethodDescriptionvoid
addDataHandler
(String contentID, DataHandler dataHandler) Programatically adding an SOAP with Attachments(SwA) Attachment.String[]
Get the content IDs of all MIME parts in the message.Identify the type of message (MTOM or SOAP with attachments) represented by this object.Get the content of the MIME part identified by a given content ID.Get the content IDs of the already loaded MIME parts in the message.Get the content IDs of all MIME parts in the message.long
If the Attachments is backed by an InputStream, then this method returns the length of the message contents (Length of the entire message - Length of the Transport Headers)getDataHandler
(String contentID) Get theDataHandler
object for the MIME part with a given content ID.Deprecated.As of Axiom 1.2.13, this method is no longer supported.Stream based accessgetMap()
Get a map of all MIME parts in the message.Get the content ID of the root part of the MIME message.Get the content type of the root part of the MIME message.Get an input stream for the root part of the MIME message.getRootPartInputStream
(boolean preserve) Get an input stream for the root part of the MIME message.Deprecated.UsegetRootPartContentID()
instead.Deprecated.UsegetRootPartContentType()
instead.Deprecated.UsegetRootPartInputStream()
instead.void
removeDataHandler
(String blobContentID) Removes the DataHandler corresponding to the given contenID.void
setLifecycleManager
(LifecycleManager manager)
-
Constructor Details
-
Attachments
public Attachments(LifecycleManager manager, InputStream inStream, String contentTypeString, boolean fileCacheEnable, String attachmentRepoDir, String fileThreshold) throws OMException Moves the pointer to the beginning of the first MIME part. Reads till first MIME boundary is found or end of stream is reached.- Parameters:
inStream
-contentTypeString
-fileCacheEnable
-attachmentRepoDir
-- Throws:
OMException
-
Attachments
public Attachments(LifecycleManager manager, InputStream inStream, String contentTypeString, boolean fileCacheEnable, String attachmentRepoDir, String fileThreshold, int contentLength) throws OMException Moves the pointer to the beginning of the first MIME part. Reads till first MIME boundary is found or end of stream is reached.- Parameters:
inStream
-contentTypeString
-fileCacheEnable
-attachmentRepoDir
-fileThreshold
-contentLength
-- Throws:
OMException
-
Attachments
public Attachments(InputStream inStream, String contentTypeString, boolean fileCacheEnable, String attachmentRepoDir, String fileThreshold) throws OMException Moves the pointer to the beginning of the first MIME part. Reads till first MIME boundary is found or end of stream is reached.- Parameters:
inStream
-contentTypeString
-fileCacheEnable
-attachmentRepoDir
-- Throws:
OMException
-
Attachments
public Attachments(InputStream inStream, String contentTypeString, boolean fileCacheEnable, String attachmentRepoDir, String fileThreshold, int contentLength) throws OMException Moves the pointer to the beginning of the first MIME part. Reads till first MIME boundary is found or end of stream is reached.- Parameters:
inStream
-contentTypeString
-fileCacheEnable
-attachmentRepoDir
-fileThreshold
-contentLength
-- Throws:
OMException
-
Attachments
Sets file cache to false.- Parameters:
inStream
-contentTypeString
-- Throws:
OMException
-
Attachments
public Attachments()Use this constructor when instantiating this to store the attachments set programatically through the SwA API.
-
-
Method Details
-
getLifecycleManager
-
setLifecycleManager
-
getAttachmentSpecType
Identify the type of message (MTOM or SOAP with attachments) represented by this object. Note that this method is only meaningful if the instance was created from a stream.- Returns:
- One of the
MTOMConstants.MTOM_TYPE
,MTOMConstants.SWA_TYPE
orMTOMConstants.SWA_TYPE_12
constants. - Throws:
OMException
- if the message doesn't have one of the supported types (i.e. is neither MTOM nor SOAP with attachments) or if the instance was not created from a stream
-
getDataHandler
Get theDataHandler
object for the MIME part with a given content ID. The returned instance MAY implementDataHandlerExt
in which case the caller can use that API to stream the content of the part. In addition, theDataSource
linked to the returnedDataHandler
MAY be of typeSizeAwareDataSource
in which case the caller can use that interface to determine the size of the MIME part.- Parameters:
contentID
- the raw content ID (without the surrounding angle brackets andcid:
prefix) of the MIME part- Returns:
- the
DataHandler
of the MIME part referred by the content ID ornull
if the MIME part referred by the content ID does not exist
-
addDataHandler
Programatically adding an SOAP with Attachments(SwA) Attachment. These attachments will get serialized only if SOAP with Attachments is enabled.- Parameters:
contentID
-dataHandler
-
-
removeDataHandler
Removes the DataHandler corresponding to the given contenID. If it is not present, then trying to find it calling the getNextPart() till the required part is found.- Parameters:
blobContentID
-
-
getSOAPPartInputStream
Deprecated.UsegetRootPartInputStream()
instead.- Throws:
OMException
-
getSOAPPartContentID
Deprecated.UsegetRootPartContentID()
instead. -
getSOAPPartContentType
Deprecated.UsegetRootPartContentType()
instead. -
getRootPartInputStream
Get an input stream for the root part of the MIME message. The root part is located as described in the documentation of thegetRootPartContentID()
method. Note that a new stream is returned each time this method is called, i.e. the method does not consume the root part. Instead it loads the root part into memory so that it can be read several times.- Returns:
- the input stream for the root part
- Throws:
OMException
-
getRootPartInputStream
Get an input stream for the root part of the MIME message. This method is similar togetRootPartInputStream()
, but can be instructed to consume the root part. This allows streaming of the root part. If that feature is used, the root part will not be loaded into memory unless an attempt is made to access another part of the MIME message, in which case the remaining (i.e. unconsumed) content of the root part will be buffered. If the feature is not enabled, then this method behaves in the same way asgetRootPartInputStream()
.- Parameters:
preserve
-true
if the content of the root part should be fetched into memory so that it can be read several times,false
if the root part should be consumed- Returns:
- the input stream for the root part
- Throws:
OMException
-
getRootPartContentID
Get the content ID of the root part of the MIME message. This content ID is determined as follows:- If the content type of the MIME message has a
start
parameter, then the content ID will be extracted from that parameter. - Otherwise the content ID of the first MIME part of the MIME message is returned.
- Returns:
- the content ID of the root part (without the surrounding angle brackets)
- If the content type of the MIME message has a
-
getRootPartContentType
Get the content type of the root part of the MIME message. The root part is located as described in the documentation of thegetRootPartContentID()
method.- Returns:
- the content type of the root part
- Throws:
OMException
- if the content type could not be determined
-
getIncomingAttachmentStreams
Stream based access- Returns:
- The stream container of type
IncomingAttachmentStreams
- Throws:
IllegalStateException
- if application has alreadt started using Part's directly
-
getAllContentIDs
Get the content IDs of all MIME parts in the message. This includes the content ID of the SOAP part as well as the content IDs of the attachments. Note that if this object has been created from a stream, a call to this method will force reading of all MIME parts that have not been fetched from the stream yet.- Returns:
- an array with the content IDs in order of appearance in the message
-
getContentIDSet
Get the content IDs of all MIME parts in the message. This includes the content ID of the SOAP part as well as the content IDs of the attachments. Note that if this object has been created from a stream, a call to this method will force reading of all MIME parts that have not been fetched from the stream yet.- Returns:
- the set of content IDs
-
getMap
Get a map of all MIME parts in the message. This includes the SOAP part as well as the attachments. Note that if this object has been created from a stream, a call to this method will force reading of all MIME parts that have not been fetched from the stream yet.- Returns:
- A map of all MIME parts in the message, with content IDs as keys and
DataHandler
objects as values.
-
getContentIDList
Get the content IDs of the already loaded MIME parts in the message. This includes the content ID of the SOAP part as well as the content IDs of the attachments. If this object has been created from a stream, only the content IDs of the MIME parts that have already been fetched from the stream are returned. If this is not the desired behavior,getAllContentIDs()
orgetContentIDSet()
should be used instead.- Returns:
- List of content IDs in order of appearance in message
-
getContentLength
If the Attachments is backed by an InputStream, then this method returns the length of the message contents (Length of the entire message - Length of the Transport Headers)- Returns:
- length of message content or -1 if Attachments is not backed by an InputStream
- Throws:
IOException
-
getIncomingAttachmentsAsSingleStream
Deprecated.As of Axiom 1.2.13, this method is no longer supported.- Throws:
IllegalStateException
-
getMultipartBody
-
getBlob
Description copied from interface:OMAttachmentAccessor
Get the content of the MIME part identified by a given content ID.- Specified by:
getBlob
in interfaceOMAttachmentAccessor
- Parameters:
contentID
- the raw content ID (without the surrounding angle brackets andcid:
prefix) of the MIME part- Returns:
- the content of the MIME part referred by the content ID or
null
if the MIME part referred by the content ID does not exist
-