Uses of Interface
org.apache.axiom.attachments.Part

Packages that use Part
org.apache.axiom.attachments   
org.apache.axiom.attachments.impl   
 

Uses of Part in org.apache.axiom.attachments
 

Methods in org.apache.axiom.attachments that return Part
private  Part Attachments.getPart()
           
 

Uses of Part in org.apache.axiom.attachments.impl
 

Classes in org.apache.axiom.attachments.impl that implement Part
(package private)  class AbstractPart
          AbstractPart is a base class for the actual Part implementations.
 class PartOnFile
          PartOnFile stores that attachment in a file.
 class PartOnMemory
          PartOnMemory stores the attachment in memory (in a byte[]) This implementation is used for smaller attachments to enhance performance.
 class PartOnMemoryEnhanced
          PartOnMemoryEnhanced stores the attachment in memory (in non-contigous byte arrays) This implementation is used for smaller attachments to enhance performance.
 

Methods in org.apache.axiom.attachments.impl that return Part
static Part PartFactory.createPart(LifecycleManager manager, MIMEBodyPartInputStream in, boolean isSOAPPart, int threshholdSize, java.lang.String attachmentDir, int messageContentLength)
          Creates a part from the input stream.