
io.tracee.contextlogger.contextprovider.jaxws.JaxWsWrapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of contextlogger-impl Show documentation
Show all versions of contextlogger-impl Show documentation
Please refer to https://github.com/tracee/contextlogger.
The newest version!
package io.tracee.contextlogger.contextprovider.jaxws;
/**
* Wrapper class for JaxWs soap request and response.
*/
public final class JaxWsWrapper {
private final String soapRequest;
private final String soapResponse;
private JaxWsWrapper(final String soapRequest, final String soapResponse) {
this.soapRequest = soapRequest;
this.soapResponse = soapResponse;
}
public static JaxWsWrapper wrap(final String soapRequest, final String soapResponse) {
return new JaxWsWrapper(soapRequest, soapResponse);
}
public String getSoapRequest() {
return soapRequest;
}
public String getSoapResponse() {
return soapResponse;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy