Package | Description |
---|---|
org.apache.cxf.jaxrs.client |
Modifier and Type | Class and Description |
---|---|
class |
LocalClientState
Keeps the client state such as the baseURI, currentURI, requestHeaders, current response
|
class |
ThreadLocalClientState
Keeps the client state such as the baseURI, currentURI, requestHeaders, current response
in a thread local storage
|
Modifier and Type | Method and Description |
---|---|
protected ClientState |
AbstractClient.getState() |
protected ClientState |
ThreadLocalClientState.getState() |
ClientState |
ClientState.newState(URI baseURI,
javax.ws.rs.core.MultivaluedMap<String,String> headers,
javax.ws.rs.core.MultivaluedMap<String,String> templates)
The factory method for creating a new state.
|
ClientState |
LocalClientState.newState(URI currentURI,
javax.ws.rs.core.MultivaluedMap<String,String> headers,
javax.ws.rs.core.MultivaluedMap<String,String> templatesMap) |
ClientState |
ThreadLocalClientState.newState(URI currentURI,
javax.ws.rs.core.MultivaluedMap<String,String> headers,
javax.ws.rs.core.MultivaluedMap<String,String> templates) |
Modifier and Type | Method and Description |
---|---|
void |
JAXRSClientFactoryBean.setInitialState(ClientState initialState)
Sets the initial client state, can be a thread-safe state.
|
Constructor and Description |
---|
AbstractClient(ClientState initialState) |
ClientProxyImpl(ClientState initialState,
ClassLoader loader,
ClassResourceInfo cri,
boolean isRoot,
boolean inheritHeaders,
Object... varValues) |
WebClient(ClientState state) |
Apache CXF