Uses of Interface
org.apache.cxf.jaxrs.client.ClientState

Packages that use ClientState
org.apache.cxf.jaxrs.client   
 

Uses of ClientState in org.apache.cxf.jaxrs.client
 

Classes in org.apache.cxf.jaxrs.client that implement ClientState
 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
 

Methods in org.apache.cxf.jaxrs.client that return ClientState
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 newBaseURI, javax.ws.rs.core.MultivaluedMap<String,String> headers, javax.ws.rs.core.MultivaluedMap<String,String> templatesMap)
           
 ClientState ThreadLocalClientState.newState(URI baseURI, javax.ws.rs.core.MultivaluedMap<String,String> headers, javax.ws.rs.core.MultivaluedMap<String,String> templates)
           
 

Methods in org.apache.cxf.jaxrs.client with parameters of type ClientState
 void JAXRSClientFactoryBean.setInitialState(ClientState initialState)
           
 

Constructors in org.apache.cxf.jaxrs.client with parameters of type ClientState
AbstractClient(ClientState initialState)
           
ClientProxyImpl(ClientState initialState, ClassResourceInfo cri, boolean isRoot, boolean inheritHeaders, Object... varValues)
           
WebClient(ClientState state)
           
 



Apache CXF