Uses of Interface
org.apache.cxf.message.Attachment

Packages that use Attachment
org.apache.cxf.aegis   
org.apache.cxf.aegis.databinding   
org.apache.cxf.aegis.type.mtom   
org.apache.cxf.attachment   
org.apache.cxf.databinding   
org.apache.cxf.databinding.source   
org.apache.cxf.databinding.stax   
org.apache.cxf.jaxb   
org.apache.cxf.jaxb.attachment   
org.apache.cxf.jaxrs.ext.multipart   
org.apache.cxf.message   
org.apache.cxf.xmlbeans   
 

Uses of Attachment in org.apache.cxf.aegis
 

Methods in org.apache.cxf.aegis that return types with arguments of type Attachment
 java.util.Collection<Attachment> Context.getAttachments()
           
 

Method parameters in org.apache.cxf.aegis with type arguments of type Attachment
 void Context.setAttachments(java.util.Collection<Attachment> attachments)
           
 

Uses of Attachment in org.apache.cxf.aegis.databinding
 

Method parameters in org.apache.cxf.aegis.databinding with type arguments of type Attachment
 void XMLStreamDataReader.setAttachments(java.util.Collection<Attachment> attachments)
           
 void XMLStreamDataWriter.setAttachments(java.util.Collection<Attachment> attachments)
           
 void ElementDataReader.setAttachments(java.util.Collection<Attachment> attachments)
          Attach a collection of attachments to a binding.
 void ElementDataWriter.setAttachments(java.util.Collection<Attachment> attachments)
           
 

Uses of Attachment in org.apache.cxf.aegis.type.mtom
 

Methods in org.apache.cxf.aegis.type.mtom that return Attachment
protected abstract  Attachment AbstractXOPType.createAttachment(java.lang.Object object, java.lang.String id)
           
protected  Attachment DataHandlerType.createAttachment(java.lang.Object object, java.lang.String id)
           
protected  Attachment ByteArrayType.createAttachment(java.lang.Object object, java.lang.String id)
           
protected  Attachment DataSourceType.createAttachment(java.lang.Object object, java.lang.String id)
           
static Attachment AttachmentUtil.getAttachment(java.lang.String id, java.util.Collection<Attachment> attachments)
           
 

Methods in org.apache.cxf.aegis.type.mtom with parameters of type Attachment
protected abstract  java.lang.Object AbstractXOPType.readAttachment(Attachment att, Context context)
           
protected  java.lang.Object DataHandlerType.readAttachment(Attachment att, Context context)
           
protected  java.lang.Object ByteArrayType.readAttachment(Attachment att, Context context)
           
protected  java.lang.Object DataSourceType.readAttachment(Attachment att, Context context)
           
 

Method parameters in org.apache.cxf.aegis.type.mtom with type arguments of type Attachment
static Attachment AttachmentUtil.getAttachment(java.lang.String id, java.util.Collection<Attachment> attachments)
           
 

Uses of Attachment in org.apache.cxf.attachment
 

Classes in org.apache.cxf.attachment that implement Attachment
 class AttachmentImpl
           
 

Methods in org.apache.cxf.attachment that return Attachment
static Attachment AttachmentUtil.createAttachment(java.io.InputStream stream, javax.mail.internet.InternetHeaders headers)
           
 

Methods in org.apache.cxf.attachment that return types with arguments of type Attachment
 java.util.List<Attachment> LazyAttachmentCollection.getLoadedAttachments()
           
 java.util.Iterator<Attachment> LazyAttachmentCollection.iterator()
           
 

Methods in org.apache.cxf.attachment with parameters of type Attachment
 boolean LazyAttachmentCollection.add(Attachment arg0)
           
static java.lang.String AttachmentUtil.getAttchmentPartHeader(Attachment att)
           
 

Method parameters in org.apache.cxf.attachment with type arguments of type Attachment
 boolean LazyAttachmentCollection.addAll(java.util.Collection<? extends Attachment> arg0)
           
static java.util.Map<java.lang.String,javax.activation.DataHandler> AttachmentUtil.getDHMap(java.util.Collection<Attachment> attachments)
           
 

Constructor parameters in org.apache.cxf.attachment with type arguments of type Attachment
LazyDataSource(java.lang.String id, java.util.Collection<Attachment> attachments)
           
 

Uses of Attachment in org.apache.cxf.databinding
 

Method parameters in org.apache.cxf.databinding with type arguments of type Attachment
 void DataReader.setAttachments(java.util.Collection<Attachment> attachments)
          Attach a collection of attachments to a binding.
 void DataWriter.setAttachments(java.util.Collection<Attachment> attachments)
          Attach a collection of attachments to this writer.
 

Uses of Attachment in org.apache.cxf.databinding.source
 

Method parameters in org.apache.cxf.databinding.source with type arguments of type Attachment
 void NodeDataReader.setAttachments(java.util.Collection<Attachment> attachments)
           
 void NodeDataWriter.setAttachments(java.util.Collection<Attachment> attachments)
           
 void XMLStreamDataReader.setAttachments(java.util.Collection<Attachment> attachments)
           
 void XMLStreamDataWriter.setAttachments(java.util.Collection<Attachment> attachments)
           
 

Uses of Attachment in org.apache.cxf.databinding.stax
 

Method parameters in org.apache.cxf.databinding.stax with type arguments of type Attachment
 void StaxDataBinding.XMLStreamDataReader.setAttachments(java.util.Collection<Attachment> attachments)
           
 void StaxDataBinding.XMLStreamDataWriter.setAttachments(java.util.Collection<Attachment> attachments)
           
 

Uses of Attachment in org.apache.cxf.jaxb
 

Fields in org.apache.cxf.jaxb with type parameters of type Attachment
protected  java.util.Collection<Attachment> JAXBDataBase.attachments
           
 

Methods in org.apache.cxf.jaxb that return types with arguments of type Attachment
 java.util.Collection<Attachment> JAXBDataBase.getAttachments()
           
 

Method parameters in org.apache.cxf.jaxb with type arguments of type Attachment
 void JAXBDataBase.setAttachments(java.util.Collection<Attachment> attachments)
           
 

Uses of Attachment in org.apache.cxf.jaxb.attachment
 

Constructor parameters in org.apache.cxf.jaxb.attachment with type arguments of type Attachment
JAXBAttachmentMarshaller(java.util.Collection<Attachment> attachments, java.lang.Integer mtomThreshold)
           
JAXBAttachmentUnmarshaller(java.util.Collection<Attachment> attachments)
           
 

Uses of Attachment in org.apache.cxf.jaxrs.ext.multipart
 

Constructors in org.apache.cxf.jaxrs.ext.multipart with parameters of type Attachment
Attachment(Attachment a)
           
 

Uses of Attachment in org.apache.cxf.message
 

Methods in org.apache.cxf.message that return types with arguments of type Attachment
 java.util.Collection<Attachment> Message.getAttachments()
          Retrieve any binary attachments associated with the message.
 java.util.Collection<Attachment> AbstractWrappedMessage.getAttachments()
           
 java.util.Collection<Attachment> MessageImpl.getAttachments()
           
 

Method parameters in org.apache.cxf.message with type arguments of type Attachment
 void Message.setAttachments(java.util.Collection<Attachment> attachments)
           
 void AbstractWrappedMessage.setAttachments(java.util.Collection<Attachment> attachments)
           
 void MessageImpl.setAttachments(java.util.Collection<Attachment> attachments)
           
 

Uses of Attachment in org.apache.cxf.xmlbeans
 

Method parameters in org.apache.cxf.xmlbeans with type arguments of type Attachment
 void DataReaderImpl.setAttachments(java.util.Collection<Attachment> attachments)
           
 void NodeDataWriterImpl.setAttachments(java.util.Collection<Attachment> attachments)
           
 void DataWriterImpl.setAttachments(java.util.Collection<Attachment> attachments)
           
 



Apache CXF