Uses of Interface
com.sun.xml.ws.api.message.AttachmentSet

Packages that use AttachmentSet
com.sun.xml.ws.api.message Message and related abstractions that represent a SOAP message. 
com.sun.xml.ws.api.message.stream   
com.sun.xml.ws.client.dispatch   
com.sun.xml.ws.client.sei   
com.sun.xml.ws.encoding   
com.sun.xml.ws.encoding.xml   
com.sun.xml.ws.message Message implementations. 
com.sun.xml.ws.message.jaxb Message implementation for JAXB. 
com.sun.xml.ws.message.saaj   
com.sun.xml.ws.message.source   
com.sun.xml.ws.message.stream   
com.sun.xml.ws.server.sei   
 

Uses of AttachmentSet in com.sun.xml.ws.api.message
 

Fields in com.sun.xml.ws.api.message declared as AttachmentSet
protected  AttachmentSet Message.attachmentSet
           
 

Methods in com.sun.xml.ws.api.message that return AttachmentSet
 AttachmentSet Message.getAttachments()
          Gets the attachments of this message (attachments live outside a message.)
 

Uses of AttachmentSet in com.sun.xml.ws.api.message.stream
 

Fields in com.sun.xml.ws.api.message.stream declared as AttachmentSet
 AttachmentSet StreamBasedMessage.attachments
          The attachments of this message (attachments live outside a message.)
 

Constructors in com.sun.xml.ws.api.message.stream with parameters of type AttachmentSet
InputStreamMessage(Packet properties, AttachmentSet attachments, String contentType, InputStream msg)
          Create a new message.
StreamBasedMessage(Packet properties, AttachmentSet attachments)
          Create a new message.
XMLStreamReaderMessage(Packet properties, AttachmentSet attachments, javax.xml.stream.XMLStreamReader msg)
          Create a new message.
 

Uses of AttachmentSet in com.sun.xml.ws.client.dispatch
 

Methods in com.sun.xml.ws.client.dispatch that return AttachmentSet
protected  AttachmentSet DispatchImpl.setOutboundAttachments()
           
 

Uses of AttachmentSet in com.sun.xml.ws.client.sei
 

Methods in com.sun.xml.ws.client.sei with parameters of type AttachmentSet
(package private)  Object ResponseBuilder.RpcLit.PartBuilder.readResponse(Object[] args, javax.xml.stream.XMLStreamReader r, AttachmentSet att)
           
 

Uses of AttachmentSet in com.sun.xml.ws.encoding
 

Methods in com.sun.xml.ws.encoding with parameters of type AttachmentSet
 void StreamSOAPCodec.decode(InputStream in, String contentType, Packet packet, AttachmentSet att)
           
 void RootOnlyCodec.decode(InputStream in, String contentType, Packet packet, AttachmentSet att)
          Reads root part bytes from InputStream and constructs a Message along with the given attachments.
 void StreamSOAPCodec.decode(ReadableByteChannel in, String contentType, Packet response, AttachmentSet att)
           
 void RootOnlyCodec.decode(ReadableByteChannel in, String contentType, Packet packet, AttachmentSet att)
           
 Message StreamSOAPCodec.decode(javax.xml.stream.XMLStreamReader reader, AttachmentSet attachmentSet)
          Decodes a message from XMLStreamReader that points to the beginning of a SOAP infoset.
 

Uses of AttachmentSet in com.sun.xml.ws.encoding.xml
 

Methods in com.sun.xml.ws.encoding.xml that return AttachmentSet
 AttachmentSet XMLMessage.XMLMultiPart.getAttachments()
           
 

Uses of AttachmentSet in com.sun.xml.ws.message
 

Classes in com.sun.xml.ws.message that implement AttachmentSet
 class AttachmentSetImpl
          Default dumb AttachmentSet implementation backed by ArrayList.
 class MimeAttachmentSet
          AttachmentSet backed by MimeMultipartParser
 

Methods in com.sun.xml.ws.message that return AttachmentSet
 AttachmentSet EmptyMessageImpl.getAttachments()
           
 

Constructors in com.sun.xml.ws.message with parameters of type AttachmentSet
AttachmentUnmarshallerImpl(AttachmentSet attachments)
           
EmptyMessageImpl(HeaderList headers, AttachmentSet attachmentSet, SOAPVersion version)
           
 

Uses of AttachmentSet in com.sun.xml.ws.message.jaxb
 

Methods in com.sun.xml.ws.message.jaxb that return AttachmentSet
 AttachmentSet JAXBMessage.getAttachments()
           
 

Uses of AttachmentSet in com.sun.xml.ws.message.saaj
 

Methods in com.sun.xml.ws.message.saaj that return AttachmentSet
 AttachmentSet SAAJMessage.getAttachments()
          Gets the attachments of this message (attachments live outside a message.)
 

Uses of AttachmentSet in com.sun.xml.ws.message.source
 

Constructors in com.sun.xml.ws.message.source with parameters of type AttachmentSet
PayloadSourceMessage(HeaderList headers, Source payload, AttachmentSet attSet, SOAPVersion soapVersion)
           
 

Uses of AttachmentSet in com.sun.xml.ws.message.stream
 

Methods in com.sun.xml.ws.message.stream that return AttachmentSet
 AttachmentSet StreamMessage.getAttachments()
           
 AttachmentSet PayloadStreamReaderMessage.getAttachments()
           
 

Constructors in com.sun.xml.ws.message.stream with parameters of type AttachmentSet
PayloadStreamReaderMessage(HeaderList headers, javax.xml.stream.XMLStreamReader reader, AttachmentSet attSet, SOAPVersion soapVersion)
           
StreamMessage(HeaderList headers, AttachmentSet attachmentSet, javax.xml.stream.XMLStreamReader reader, SOAPVersion soapVersion)
          Creates a StreamMessage from a XMLStreamReader that points at the start element of the payload, and headers.
StreamMessage(TagInfoset envelopeTag, TagInfoset headerTag, AttachmentSet attachmentSet, HeaderList headers, TagInfoset bodyTag, javax.xml.stream.XMLStreamReader reader, SOAPVersion soapVersion)
          Creates a StreamMessage from a XMLStreamReader and the complete infoset of the SOAP envelope.
 

Uses of AttachmentSet in com.sun.xml.ws.server.sei
 

Methods in com.sun.xml.ws.server.sei with parameters of type AttachmentSet
(package private)  void EndpointArgumentsBuilder.RpcLit.PartBuilder.readRequest(Object[] args, javax.xml.stream.XMLStreamReader r, AttachmentSet att)