All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.tracee.contextlogger.contextprovider.jaxws.JaxWsWrapper Maven / Gradle / Ivy

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