Searched defs:codec (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/server/
H A DAdapter.java85 public final Codec codec; field in class:Adapter.Toolkit
92 this.codec = endpoint.createCodec();
H A DAbstractServerAsyncTransport.java65 * @param codec for encoding/decoding {@link Message}
69 protected Packet decodePacket(T connection, @NotNull Codec codec) throws IOException { argument
82 * @param codec that does the encoding of Packet
85 protected abstract void encodePacket(T connection, @NotNull Packet packet, @NotNull Codec codec) throws IOException; argument
131 final Codec codec = codecPool.take();
132 Packet request = decodePacket(connection, codec);
137 encodePacket(connection, response, codec);
141 codecPool.recycle(codec);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/pipe/
H A DClientTubeAssemblerContext.java72 private @NotNull Codec codec; field in class:ClientTubeAssemblerContext
105 @NotNull Container container, Codec codec) {
106 this(address, wsdlModel, rootOwner, binding, container, codec, null);
116 @NotNull Container container, Codec codec, SEIModel seiModel) {
117 this(address, wsdlModel, rootOwner, null/* no info on which port it is, so pass null*/, binding, container, codec,seiModel);
127 @NotNull Container container, Codec codec, SEIModel seiModel) {
128 this(address, wsdlModel, (bindingProvider==null? null: bindingProvider.getPortInfo().getOwner()), bindingProvider, binding, container, codec,seiModel);
136 @NotNull Container container, Codec codec, SEIModel seiModel) {
143 this.codec = codec;
103 ClientTubeAssemblerContext(@otNull EndpointAddress address, @Nullable WSDLPort wsdlModel, @NotNull WSService rootOwner, @NotNull WSBinding binding, @NotNull Container container, Codec codec) argument
114 ClientTubeAssemblerContext(@otNull EndpointAddress address, @Nullable WSDLPort wsdlModel, @NotNull WSService rootOwner, @NotNull WSBinding binding, @NotNull Container container, Codec codec, SEIModel seiModel) argument
125 ClientTubeAssemblerContext(@otNull EndpointAddress address, @Nullable WSDLPort wsdlModel, @NotNull WSBindingProvider bindingProvider, @NotNull WSBinding binding, @NotNull Container container, Codec codec, SEIModel seiModel) argument
134 ClientTubeAssemblerContext(@otNull EndpointAddress address, @Nullable WSDLPort wsdlModel, @Nullable WSService rootOwner, @Nullable WSBindingProvider bindingProvider, @NotNull WSBinding binding, @NotNull Container container, Codec codec, SEIModel seiModel) argument
324 setCodec(@otNull Codec codec) argument
[all...]
H A DServerTubeAssemblerContext.java66 private @NotNull Codec codec; field in class:ServerTubeAssemblerContext
78 this.codec = this.binding.createCodec();
222 * Gets the {@link Codec} that is set by {@link #setCodec} or the default codec
223 * based on the binding. The codec is a full codec that is responsible for
227 * @return codec to be used for web service requests
231 return codec;
236 * new codec will be used by jax-ws server runtime for encoding/decoding web service
238 * of this new codec and will be used in the server runtime.
241 * The codec i
252 setCodec(@otNull Codec codec) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/client/
H A DHttpTransportPipe.java71 private final Codec codec; field in class:HttpTransportPipe
86 public HttpTransportPipe(Codec codec, WSBinding binding) { argument
87 this.codec = codec;
113 this(that.codec.copy(), that.binding);
156 ContentType ct = codec.getStaticContentType(request);
160 ct = codec.encode(request, buf);
187 codec.encode(request, buf);
196 codec.encode(request, os);
254 codec
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/
H A DHttpAdapter.java297 * @param codec
303 private Packet decodePacket(@NotNull WSHTTPConnection con, @NotNull Codec codec) throws IOException { argument
321 codec.decode(in, ct, packet);
346 private void encodePacket(@NotNull Packet packet, @NotNull WSHTTPConnection con, @NotNull Codec codec) throws IOException { argument
375 ContentType contentType = codec.getStaticContentType(packet);
381 codec.encode(packet, buf);
385 codec.encode(packet, os);
391 contentType = codec.encode(packet, buf);
460 request = decodePacket(con, tk.codec);
465 encodePacket(response, con, tk.codec);
521 encodePacket(WSHTTPConnection con, @NotNull Packet packet, @NotNull Codec codec) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/
H A DMtomCodec.java83 private final StreamSOAPCodec codec; field in class:MtomCodec
92 MtomCodec(SOAPVersion version, StreamSOAPCodec codec, WSBinding binding, WebServiceFeature mtomFeature){ argument
94 this.codec = codec;
221 return new MtomCodec(version, (StreamSOAPCodec)codec.copy(), binding, mtomFeature);
249 packet.setMessage(codec.decode(mtomReader, new MimeAttachmentSet(mpp)));

Completed in 102 milliseconds