Package org.apache.axis.attachments
Class AttachmentUtils
- java.lang.Object
-
- org.apache.axis.attachments.AttachmentUtils
-
public class AttachmentUtils extends java.lang.ObjectThis class allow access to the Jaf data handler in AttachmentPart.- Author:
- Rick Rineholt
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static javax.activation.DataHandlergetActivationDataHandler(Part part)Obtain the DataHandler from the part.static booleanisAttachment(java.lang.Object value)Determine if an object is to be treated as an attchment.
-
-
-
Method Detail
-
getActivationDataHandler
public static javax.activation.DataHandler getActivationDataHandler(Part part) throws AxisFault
Obtain the DataHandler from the part.- Parameters:
part- the part containing the Java Activiation Framework data source.- Returns:
- The Java activation data handler.
- Throws:
AxisFault
-
isAttachment
public static boolean isAttachment(java.lang.Object value)
Determine if an object is to be treated as an attchment.- Parameters:
value- the value that is to be determined if its an attachment.- Returns:
- True if value should be treated as an attchment.
-
-