|
Apache CXF API | |||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of WebClient in org.apache.cxf.jaxrs.client |
---|
Methods in org.apache.cxf.jaxrs.client that return WebClient | |
---|---|
WebClient |
WebClient.accept(javax.ws.rs.core.MediaType... types)
|
WebClient |
WebClient.accept(String... types)
|
WebClient |
WebClient.acceptEncoding(String... encodings)
|
WebClient |
WebClient.acceptLanguage(String... languages)
|
WebClient |
WebClient.back(boolean fast)
Goes back |
WebClient |
WebClient.cookie(javax.ws.rs.core.Cookie cookie)
|
static WebClient |
WebClient.create(String baseAddress)
Creates WebClient |
static WebClient |
WebClient.create(String baseURI,
boolean threadSafe)
Creates WebClient |
static WebClient |
WebClient.create(String baseAddress,
List<?> providers)
Creates WebClient |
static WebClient |
WebClient.create(String baseAddress,
List<?> providers,
boolean threadSafe)
Creates WebClient |
static WebClient |
WebClient.create(String baseAddress,
List<?> providers,
List<? extends Feature> features,
String configLocation)
Creates WebClient with a list of custom features |
static WebClient |
WebClient.create(String baseAddress,
List<?> providers,
long timeToKeepState)
Creates a thread safe WebClient |
static WebClient |
WebClient.create(String baseAddress,
List<?> providers,
String configLocation)
Creates WebClient |
static WebClient |
WebClient.create(String baseAddress,
List<?> providers,
String username,
String password,
String configLocation)
Creates WebClient which will do basic authentication |
static WebClient |
WebClient.create(String baseAddress,
String configLocation)
Creates WebClient |
static WebClient |
WebClient.create(String baseAddress,
String username,
String password,
String configLocation)
Creates WebClient which will do basic authentication |
static WebClient |
WebClient.create(URI baseURI)
Creates WebClient |
WebClient |
JAXRSClientFactoryBean.createWebClient()
Creates a WebClient instance |
WebClient |
WebClient.encoding(String encoding)
|
WebClient |
WebClient.fragment(String name)
Updates the current URI fragment |
static WebClient |
WebClient.fromClient(Client client)
Creates WebClient, baseURI will be set to Client currentURI |
static WebClient |
WebClient.fromClient(Client client,
boolean inheritHeaders)
Creates WebClient, baseURI will be set to Client currentURI |
WebClient |
WebClient.header(String name,
Object... values)
|
WebClient |
WebClient.headers(javax.ws.rs.core.MultivaluedMap<String,String> map)
|
WebClient |
WebClient.language(String language)
|
WebClient |
WebClient.match(javax.ws.rs.core.EntityTag tag,
boolean ifNot)
|
WebClient |
WebClient.matrix(String name,
Object... values)
Updates the current URI matrix parameters |
WebClient |
WebClient.modified(Date date,
boolean ifNot)
|
WebClient |
WebClient.path(Object path)
Updates the current URI path |
WebClient |
WebClient.path(String path,
Object... values)
Updates the current URI path with path segment which may contain template variables |
WebClient |
WebClient.query(String name,
Object... values)
|
WebClient |
WebClient.replaceHeader(String headerName,
String value)
Replaces the header value with the new values. |
WebClient |
WebClient.replacePath(String path)
Replaces the current path with the new value. |
WebClient |
WebClient.replaceQuery(String queryString)
Replaces the current query with the new value. |
WebClient |
WebClient.replaceQueryParam(String queryParam,
Object... value)
Replaces the current query with the new value. |
WebClient |
WebClient.reset()
|
WebClient |
WebClient.resetQuery()
Resets the current query |
WebClient |
WebClient.to(String newAddress,
boolean forward)
Moves WebClient to a new baseURI or forwards to new currentURI |
WebClient |
WebClient.type(javax.ws.rs.core.MediaType ct)
|
WebClient |
WebClient.type(String type)
|
Uses of WebClient in org.apache.cxf.jaxrs.client.spec |
---|
Methods in org.apache.cxf.jaxrs.client.spec that return WebClient | |
---|---|
WebClient |
ClientImpl.WebTargetImpl.getWebClient()
|
WebClient |
InvocationBuilderImpl.getWebClient()
|
Constructors in org.apache.cxf.jaxrs.client.spec with parameters of type WebClient | |
---|---|
ClientImpl.WebTargetImpl(javax.ws.rs.core.UriBuilder uriBuilder,
javax.ws.rs.core.Configuration config,
WebClient targetClient)
|
|
InvocationBuilderImpl(WebClient webClient)
|
Uses of WebClient in org.apache.cxf.rs.security.oauth.client |
---|
Methods in org.apache.cxf.rs.security.oauth.client with parameters of type WebClient | |
---|---|
static OAuthClientUtils.Token |
OAuthClientUtils.getAccessToken(WebClient accessTokenService,
OAuthClientUtils.Consumer consumer,
OAuthClientUtils.Token requestToken,
String verifier)
Returns a simple representation of the Access token |
static OAuthClientUtils.Token |
OAuthClientUtils.getRequestToken(WebClient requestTokenService,
OAuthClientUtils.Consumer consumer,
URI callback,
Map<String,String> extraParams)
Returns a simple representation of the Request token |
Uses of WebClient in org.apache.cxf.rs.security.oauth2.client |
---|
Methods in org.apache.cxf.rs.security.oauth2.client with parameters of type WebClient | |
---|---|
static ClientAccessToken |
OAuthClientUtils.getAccessToken(WebClient accessTokenService,
AccessTokenGrant grant)
Obtains the access token from OAuth AccessToken Service using the initialized web client |
static ClientAccessToken |
OAuthClientUtils.getAccessToken(WebClient accessTokenService,
AccessTokenGrant grant,
Map<String,String> extraParams)
Obtains the access token from OAuth AccessToken Service using the initialized web client |
static ClientAccessToken |
OAuthClientUtils.getAccessToken(WebClient accessTokenService,
OAuthClientUtils.Consumer consumer,
AccessTokenGrant grant)
Obtains the access token from OAuth AccessToken Service using the initialized web client |
static ClientAccessToken |
OAuthClientUtils.getAccessToken(WebClient accessTokenService,
OAuthClientUtils.Consumer consumer,
AccessTokenGrant grant,
boolean setAuthorizationHeader)
Obtains the access token from OAuth AccessToken Service using the initialized web client |
static ClientAccessToken |
OAuthClientUtils.getAccessToken(WebClient accessTokenService,
OAuthClientUtils.Consumer consumer,
AccessTokenGrant grant,
Map<String,String> extraParams,
boolean setAuthorizationHeader)
Obtains the access token from OAuth AccessToken Service using the initialized web client |
static ClientAccessToken |
OAuthClientUtils.getAccessToken(WebClient accessTokenService,
OAuthClientUtils.Consumer consumer,
AccessTokenGrant grant,
Map<String,String> extraParams,
String defaultTokenType,
boolean setAuthorizationHeader)
Obtains the access token from OAuth AccessToken Service using the initialized web client |
Constructors in org.apache.cxf.rs.security.oauth2.client with parameters of type WebClient | |
---|---|
HttpRequestProperties(WebClient wc,
String httpMethod)
|
Uses of WebClient in org.apache.cxf.rs.security.oauth2.filters |
---|
Methods in org.apache.cxf.rs.security.oauth2.filters with parameters of type WebClient | |
---|---|
void |
AccessTokenValidatorClient.setTokenValidatorClient(WebClient tokenValidatorClient)
|
|
Apache CXF API | |||||||||
PREV NEXT | FRAMES NO FRAMES |