Uses of Interface
org.refcodes.rest.RestRequestClient
-
-
Uses of RestRequestClient in org.refcodes.rest
Subinterfaces of RestRequestClient in org.refcodes.rest Modifier and Type Interface Description interface
HttpDiscoveryRestClient<B extends HttpDiscoveryRestClient<B>>
TheHttpDiscoveryRestClient
provides additional functionality for registering at and signing off from a service discovery service in order to resolve URLs to or from other services.interface
HttpRestClient
Extends aRestClient
to be capable of providing a User-Agent withUserAgentAccessor.UserAgentMutator.setUserAgent(String)
(HttpRestClient.withUserAgent(String)
) and to be capable of using base URLs to be set withBaseUrlAccessor.BaseUrlMutator.setBaseUrl(String)
(BaseUrlAccessor.BaseUrlBuilder.withBaseUrl(String)
).interface
LoopbackRestClient
Extends aRestClient
to be used as loopback device e.g. for testing purposes such as testing yourRestResponseObserver
implementations.interface
RestClient
A client to send requests for communicating with a RESTful server such as theHttpRestServer
.interface
RestDeleteClient
Helper interface to keep the huge amount of convenience methods under control.interface
RestGetClient
Helper interface to keep the huge amount of convenience methods under control.interface
RestPostClient
Helper interface to keep the huge amount of convenience methods under control.interface
RestPutClient
Helper interface to keep the huge amount of convenience methods under control.Classes in org.refcodes.rest that implement RestRequestClient Modifier and Type Class Description class
AbstractHttpDiscoveryRestClientDecorator<B extends HttpDiscoveryRestClient<B>>
Abstract class for easily decorating aHttpDiscoveryRestClient
.class
AbstractHttpRestClientDecorator<B extends HttpRestClient>
Abstract class for easily decorating aHttpRestClient
.class
AbstractRestClient
Abstract base implementation of theRestClient
interface being the foundation for variousRestClient
implementations such asHttpRestClientImpl
orLoopbackRestClientImpl
.class
HttpRestClientImpl
TheHttpRestClientImpl
implements theHttpRestClient
interface.class
HttpRestClientSingleton
The singleton of theHttpRestClientImpl
for easyHttpRestClient
access.class
LoopbackRestClientImpl
Implementation if theLoopbackRestClient
for easy testing of your requests being issued with aRestClient
(HttpRestClient
) and the according responselambda
expressions.class
LoopbackRestClientSingleton
The singleton of theLoopbackRestClientImpl
for easyLoopbackRestClientImpl
access.
-