com.smartbear.soapui.spring.boot.handler.SoapResponseHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-boot-starter-soapui Show documentation
Show all versions of spring-boot-starter-soapui Show documentation
Spring Boot Starter For Soapui
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