Searched refs:Attachment (Results 1 - 25 of 29) sorted by relevance

12

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/
H A DAttachmentSetImpl.java29 import com.sun.xml.internal.ws.api.message.Attachment;
45 private final ArrayList<Attachment> attList = new ArrayList<Attachment>();
56 public AttachmentSetImpl(Iterable<Attachment> base) {
57 for (Attachment a : base)
61 public Attachment get(String contentId) {
63 Attachment a = attList.get(i);
74 public void add(Attachment att) {
78 public Iterator<Attachment> iterator() {
H A DMimeAttachmentSet.java29 import com.sun.xml.internal.ws.api.message.Attachment;
47 private Map<String, Attachment> atts = new HashMap<String, Attachment>();
55 public Attachment get(String contentId) {
56 Attachment att;
58 * First try to get the Attachment from internal map, maybe this attachment
66 * Attachment is not found in the internal map, now do look in
67 * the mpp, if found add to the internal Attachment map.
87 public void add(Attachment att) {
94 public Iterator<Attachment> iterato
[all...]
H A DAttachmentUnmarshallerImpl.java28 import com.sun.xml.internal.ws.api.message.Attachment;
54 Attachment a = attachments.get(stripScheme(cid));
62 Attachment a = attachments.get(stripScheme(cid));
H A DDataHandlerAttachment.java29 import com.sun.xml.internal.ws.api.message.Attachment;
47 public final class DataHandlerAttachment implements Attachment {
H A DByteArrayAttachment.java29 import com.sun.xml.internal.ws.api.message.Attachment;
48 public final class ByteArrayAttachment implements Attachment {
H A DJAXBAttachment.java30 import com.sun.xml.internal.ws.api.message.Attachment;
51 public final class JAXBAttachment implements Attachment, DataSource {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/message/
H A DAttachmentSet.java31 * A set of {@link Attachment} on a {@link Message}.
39 public interface AttachmentSet extends Iterable<Attachment> {
51 Attachment get(String contentId);
62 * Note that it's OK for an {@link Attachment} to belong to
69 public void add(Attachment att);
H A DAttachment.java39 * Attachment.
41 public interface Attachment { interface
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/
H A DSwACodec.java31 import com.sun.xml.internal.ws.api.message.Attachment;
61 Attachment root = mpp.getRootPart();
66 Map<String, Attachment> atts = mpp.getAttachmentParts();
67 for(Map.Entry<String, Attachment> att : atts.entrySet()) {
H A DMimeMultipartParser.java31 import com.sun.xml.internal.ws.api.message.Attachment;
64 private Attachment root;
67 private final Map<String, Attachment> attachments = new HashMap<String, Attachment>();
97 public @Nullable Attachment getRootPart() {
109 public @NotNull Map<String, Attachment> getAttachmentParts() {
131 public @Nullable Attachment getAttachmentPart(String contentId) throws IOException {
133 Attachment attach = attachments.get(contentId);
142 static class PartAttachment implements Attachment {
H A DMimeCodec.java30 import com.sun.xml.internal.ws.api.message.Attachment;
130 for (Attachment att : msg.getAttachments()) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/sei/
H A DMessageFiller.java29 import com.sun.xml.internal.ws.api.message.Attachment;
125 Attachment att = new ByteArrayAttachment(contentId,(byte[])obj,mimeType);
138 Attachment att = new DataHandlerAttachment(contentId, dh);
150 Attachment att = new JAXBAttachment(contentId, obj, param.getBridge(), mimeType);
H A DResponseBuilder.java33 import com.sun.xml.internal.ws.api.message.Attachment;
196 * Reads an Attachment into a Java parameter.
237 throw new UnsupportedOperationException("Unexpected Attachment type ="+type);
243 for (Attachment att : msg.getAttachments()) {
255 abstract Object mapAttachment(Attachment att, Object[] args) throws JAXBException;
263 Object mapAttachment(Attachment att, Object[] args) {
273 Object mapAttachment(Attachment att, Object[] args) {
291 Object mapAttachment(Attachment att, Object[] args) {
301 Object mapAttachment(Attachment att, Object[] args) {
311 Object mapAttachment(Attachment at
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/jaxb/
H A DAttachmentMarshallerImpl.java28 import com.sun.xml.internal.ws.api.message.Attachment;
75 Attachment att = new DataHandlerAttachment(cid, data);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/
H A DResponseContext.java30 import com.sun.xml.internal.ws.api.message.Attachment;
112 for(Attachment att : attSet){
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/stream/
H A DStreamAttachment.java28 import com.sun.xml.internal.ws.api.message.Attachment;
47 * Attachment created from raw bytes.
51 public class StreamAttachment implements Attachment {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/sei/
H A DEndpointArgumentsBuilder.java33 import com.sun.xml.internal.ws.api.message.Attachment;
187 * Reads an Attachment into a Java parameter.
228 throw new UnsupportedOperationException("Unknown Type="+type+" Attachment is not mapped.");
235 for (Attachment att : msg.getAttachments()) {
247 throw new WebServiceException("Missing Attachment for "+pname);
251 abstract void mapAttachment(Attachment att, Object[] args) throws JAXBException;
259 void mapAttachment(Attachment att, Object[] args) {
269 void mapAttachment(Attachment att, Object[] args) {
279 void mapAttachment(Attachment att, Object[] args) {
289 void mapAttachment(Attachment at
[all...]
H A DMessageFiller.java41 import com.sun.xml.internal.ws.api.message.Attachment;
125 Attachment att = new ByteArrayAttachment(contentId,(byte[])obj,mimeType);
139 Attachment att = new DataHandlerAttachment(contentId, dh);
151 Attachment att = new JAXBAttachment(contentId, obj, param.getBridge(), mimeType);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/saaj/
H A DSAAJMessage.java278 for (Attachment att : getAttachments()) {
510 private class SAAJAttachment implements Attachment {
604 private Map<String, Attachment> attMap;
617 public Attachment get(String contentId) {
642 public Iterator<Attachment> iterator() {
649 private Map<String, Attachment> createAttachmentMap() {
650 HashMap<String, Attachment> map = new HashMap<String, Attachment>();
658 public void add(Attachment att) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/handler/
H A DClientMessageHandlerTube.java31 import com.sun.xml.internal.ws.api.message.Attachment;
100 Attachment att = new DataHandlerAttachment(cid, atts.get(cid));
H A DClientSOAPHandlerTube.java30 import com.sun.xml.internal.ws.api.message.Attachment;
120 Attachment att = new DataHandlerAttachment(cid, atts.get(cid));
H A DServerLogicalHandlerTube.java31 import com.sun.xml.internal.ws.api.message.Attachment;
152 Attachment att = new DataHandlerAttachment(cid, atts.get(cid));
H A DServerMessageHandlerTube.java30 import com.sun.xml.internal.ws.api.message.Attachment;
90 Attachment att = new DataHandlerAttachment(cid, atts.get(cid));
H A DServerSOAPHandlerTube.java31 import com.sun.xml.internal.ws.api.message.Attachment;
143 Attachment att = new DataHandlerAttachment(cid, atts.get(cid));
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/
H A DEndpointMessageContextImpl.java30 import com.sun.xml.internal.ws.api.message.Attachment;
88 for(Attachment att : attSet){

Completed in 138 milliseconds

12