org.spincast.quickstart.exchange.AppRequestContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spincast-quickstart Show documentation
Show all versions of spincast-quickstart Show documentation
Spincast Quick Start application
package org.spincast.quickstart.exchange;
import org.spincast.core.exchange.RequestContext;
import org.spincast.plugins.httpclient.HttpClient;
/**
* Interface of our custom Request Context type.
*/
public interface AppRequestContext extends RequestContext {
/**
* Add-on to access the HttpClient factory
*/
public HttpClient httpClient();
}