MCPcopy Index your code
hub / github.com/OpenFeign/feign / SOAPCodec

Class SOAPCodec

soap-jakarta/src/main/java/feign/soap/SOAPCodec.java:24–44  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

22import feign.jaxb.JAXBContextFactory;
23
24@Experimental
25public class SOAPCodec implements Codec {
26
27 private final SOAPEncoder encoder;
28 private final SOAPDecoder decoder;
29
30 public SOAPCodec(JAXBContextFactory jaxbContextFactory) {
31 this.encoder = new SOAPEncoder(jaxbContextFactory);
32 this.decoder = new SOAPDecoder(jaxbContextFactory);
33 }
34
35 @Override
36 public Encoder encoder() {
37 return encoder;
38 }
39
40 @Override
41 public Decoder decoder() {
42 return decoder;
43 }
44}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected