net.optionfactory.spring.upstream.UpstreamHttpRequestExecution Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of upstream Show documentation
Show all versions of upstream Show documentation
optionfactory-spring REST upstream core project
package net.optionfactory.spring.upstream;
import java.io.IOException;
import net.optionfactory.spring.upstream.contexts.InvocationContext;
import net.optionfactory.spring.upstream.contexts.RequestContext;
import net.optionfactory.spring.upstream.contexts.ResponseContext;
public interface UpstreamHttpRequestExecution {
ResponseContext execute(InvocationContext invocation, RequestContext request) throws IOException;
}