Searched defs:rootCodec (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/
H A DSwACodec.java48 public SwACodec(SOAPVersion version, WSBinding binding, Codec rootCodec) { argument
50 this.rootCodec = rootCodec;
55 this.rootCodec = that.rootCodec.copy();
62 if (rootCodec instanceof RootOnlyCodec) {
63 ((RootOnlyCodec)rootCodec).decode(root.asInputStream(),root.getContentType(),packet, new MimeAttachmentSet(mpp));
65 rootCodec.decode(root.asInputStream(),root.getContentType(),packet);
H A DMimeCodec.java97 protected Codec rootCodec; field in class:MimeCodec
120 ContentType ct = rootCodec.getStaticContentType(packet);
121 String ctStr = (ct != null) ? ct.getContentType() : rootCodec.getMimeType();
125 ContentType primaryCt = rootCodec.encode(packet, out);
160 "; type=\"" + rootCodec.getMimeType() + "\"; " +
164 return rootCodec.getStaticContentType(packet);

Completed in 23 milliseconds