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

com.smartbear.soapui.spring.boot.handler.SoapResponseHandler Maven / Gradle / Ivy

There is a newer version: 1.0.3.RELEASE
Show newest version
package com.smartbear.soapui.spring.boot.handler;

import com.eviware.soapui.impl.wsdl.WsdlOperation;
import com.eviware.soapui.model.iface.Response;
import com.eviware.soapui.support.SoapUIException;

/**
 * Handler that encapsulates the process of generating a response object
 * from a {@link Response}.
 */
public interface SoapResponseHandler {

    /**
     * Processes an {@link Response} and returns some value
     * corresponding to that response.
     *
     * @param response The response to process
     * @return A value determined by the response
     *
     * @throws SoapUIException in case of a problem or the connection was aborted
     */
    T handleResponse(WsdlOperation operationInst, Response response) throws SoapUIException;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy