A B C E F G L N O R S T V

A

AccessToken - Class in org.glassfish.jersey.client.oauth1
Access Token class (credentials issued by the Service Provider for the user).
AccessToken(String, String) - Constructor for class org.glassfish.jersey.client.oauth1.AccessToken
Create a new access token.
AccessToken(String, byte[]) - Constructor for class org.glassfish.jersey.client.oauth1.AccessToken
Create a new access token with secret defined as byte array.
accessToken(AccessToken) - Method in interface org.glassfish.jersey.client.oauth1.OAuth1Builder.FilterFeatureBuilder
Set the Access Token that will be used for signing the requests.
authorizationFlow(String, String, String) - Method in interface org.glassfish.jersey.client.oauth1.OAuth1Builder
Get the builder of OAuth1AuthorizationFlow.

B

build() - Method in interface org.glassfish.jersey.client.oauth1.OAuth1Builder.FilterFeatureBuilder
Build the oauth 1 filter feature.
build() - Method in interface org.glassfish.jersey.client.oauth1.OAuth1Builder.FlowBuilder
Build the OAuth1AuthorizationFlow.
builder(ConsumerCredentials) - Static method in class org.glassfish.jersey.client.oauth1.OAuth1ClientSupport
Get a new builder of OAuth1 client support.

C

callbackUri(String) - Method in interface org.glassfish.jersey.client.oauth1.OAuth1Builder.FlowBuilder
Set the callback URI to which the user (resource owner) should be redirected after he/she grants access to this application.
client(Client) - Method in interface org.glassfish.jersey.client.oauth1.OAuth1Builder.FlowBuilder
Set the client that should be used internally by the OAuth1AuthorizationFlow to make requests to Authorization Server.
ConsumerCredentials - Class in org.glassfish.jersey.client.oauth1
Consumer credentials class (credentials issued by the Service Provider for the application).
ConsumerCredentials(String, String) - Constructor for class org.glassfish.jersey.client.oauth1.ConsumerCredentials
Create new consumer credentials.
ConsumerCredentials(String, byte[]) - Constructor for class org.glassfish.jersey.client.oauth1.ConsumerCredentials
Create a new consumer credentials with secret defined as byte array.

E

ERROR_CONFIGURATION_MISSING_CONSUMER() - Static method in class org.glassfish.jersey.client.oauth1.internal.LocalizationMessages
Error occurred in the oauth client support.
ERROR_CONFIGURATION_MISSING_TOKEN_SECRET() - Static method in class org.glassfish.jersey.client.oauth1.internal.LocalizationMessages
Error occurred in the oauth client support.
ERROR_FLOW_NOT_FINISHED() - Static method in class org.glassfish.jersey.client.oauth1.internal.LocalizationMessages
Authorization is not finished and access token was not received.
ERROR_REQUEST_ACCESS_TOKEN(Object) - Static method in class org.glassfish.jersey.client.oauth1.internal.LocalizationMessages
Error occurred in the oauth client support.
ERROR_REQUEST_ACCESS_TOKEN_NULL() - Static method in class org.glassfish.jersey.client.oauth1.internal.LocalizationMessages
Error occurred in the oauth client support.
ERROR_REQUEST_REQUEST_TOKEN(Object) - Static method in class org.glassfish.jersey.client.oauth1.internal.LocalizationMessages
Error occurred in the oauth client support.
ERROR_REQUEST_SIGNATURE() - Static method in class org.glassfish.jersey.client.oauth1.internal.LocalizationMessages
Error occurred in the oauth client support.

F

feature() - Method in interface org.glassfish.jersey.client.oauth1.OAuth1Builder
Get the builder of filter feature.
finish(String) - Method in interface org.glassfish.jersey.client.oauth1.OAuth1AuthorizationFlow
Finish the authorization process and return the AccessToken.

G

getAccessTokenSecret() - Method in class org.glassfish.jersey.client.oauth1.AccessToken
Get the access token secret.
getAccessTokenSecretAsByteArray() - Method in class org.glassfish.jersey.client.oauth1.AccessToken
Get the access token secret in byte arrays (in default encoding).
getAuthorizedClient() - Method in interface org.glassfish.jersey.client.oauth1.OAuth1AuthorizationFlow
Return the client configured for performing authorized requests to the Service Provider.
getConsumerKey() - Method in class org.glassfish.jersey.client.oauth1.ConsumerCredentials
Get consumer key.
getConsumerSecret() - Method in class org.glassfish.jersey.client.oauth1.ConsumerCredentials
Get consumer secret.
getConsumerSecretAsByteArray() - Method in class org.glassfish.jersey.client.oauth1.ConsumerCredentials
Get consumer secret as a byte array (in default encoding).
getOAuth1Feature() - Method in interface org.glassfish.jersey.client.oauth1.OAuth1AuthorizationFlow
Return the oauth filter feature that can be used to configure client instances to perform authenticated requests to the Service Provider.
getToken() - Method in class org.glassfish.jersey.client.oauth1.AccessToken
Get the access token.

L

localizableERROR_CONFIGURATION_MISSING_CONSUMER() - Static method in class org.glassfish.jersey.client.oauth1.internal.LocalizationMessages
 
localizableERROR_CONFIGURATION_MISSING_TOKEN_SECRET() - Static method in class org.glassfish.jersey.client.oauth1.internal.LocalizationMessages
 
localizableERROR_FLOW_NOT_FINISHED() - Static method in class org.glassfish.jersey.client.oauth1.internal.LocalizationMessages
 
localizableERROR_REQUEST_ACCESS_TOKEN(Object) - Static method in class org.glassfish.jersey.client.oauth1.internal.LocalizationMessages
 
localizableERROR_REQUEST_ACCESS_TOKEN_NULL() - Static method in class org.glassfish.jersey.client.oauth1.internal.LocalizationMessages
 
localizableERROR_REQUEST_REQUEST_TOKEN(Object) - Static method in class org.glassfish.jersey.client.oauth1.internal.LocalizationMessages
 
localizableERROR_REQUEST_SIGNATURE() - Static method in class org.glassfish.jersey.client.oauth1.internal.LocalizationMessages
 
LocalizationMessages - Class in org.glassfish.jersey.client.oauth1.internal
Defines string formatting method for each constant in the resource file
LocalizationMessages() - Constructor for class org.glassfish.jersey.client.oauth1.internal.LocalizationMessages
 

N

nonce(String) - Method in interface org.glassfish.jersey.client.oauth1.OAuth1Builder
Set the nonce.

O

OAuth1AuthorizationFlow - Interface in org.glassfish.jersey.client.oauth1
The interface of the OAuth 1 Authorization Flow utility.
OAuth1Builder - Interface in org.glassfish.jersey.client.oauth1
Builder of OAuth 1 client support.
OAuth1Builder.FilterFeatureBuilder - Interface in org.glassfish.jersey.client.oauth1
Builder of the Feature.
OAuth1Builder.FlowBuilder - Interface in org.glassfish.jersey.client.oauth1
Builder of the OAuth1AuthorizationFlow.
OAuth1ClientSupport - Class in org.glassfish.jersey.client.oauth1
The main class to build the support for OAuth 1 into the Jersey client.
OAUTH_PROPERTY_ACCESS_TOKEN - Static variable in class org.glassfish.jersey.client.oauth1.OAuth1ClientSupport
Key of the property that can be attached to the client request using ClientRequestContext.setProperty(String, Object) and that defines access token that should be used when generating OAuth Authorization http header.
OAUTH_PROPERTY_CONSUMER_CREDENTIALS - Static variable in class org.glassfish.jersey.client.oauth1.OAuth1ClientSupport
Key of the property that can be attached to the client request using ClientRequestContext.setProperty(String, Object) and that defines consumer credentials that should be used when generating OAuth Authorization http header.
OAUTH_PROPERTY_OAUTH_PARAMETERS - Static variable in class org.glassfish.jersey.client.oauth1.OAuth1ClientSupport
Key of the property that can be attached to the client request using ClientRequestContext.setProperty(String, Object) and that defines OAuth1Parameters that should be used when generating OAuth Authorization http header.
OAUTH_PROPERTY_OAUTH_SECRETS - Static variable in class org.glassfish.jersey.client.oauth1.OAuth1ClientSupport
Key of the property that can be attached to the client request using ClientRequestContext.setProperty(String, Object) and that defines OAuth1Secrets that should be used when generating OAuth Authorization http header.
org.glassfish.jersey.client.oauth1 - package org.glassfish.jersey.client.oauth1
Jersey OAuth 1 Client API.
org.glassfish.jersey.client.oauth1.internal - package org.glassfish.jersey.client.oauth1.internal
 

R

realm(String) - Method in interface org.glassfish.jersey.client.oauth1.OAuth1Builder
Set the realm to which the user wants to authenticate.

S

signatureMethod(String) - Method in interface org.glassfish.jersey.client.oauth1.OAuth1Builder
Set the signature method name.
start() - Method in interface org.glassfish.jersey.client.oauth1.OAuth1AuthorizationFlow
Start the authorization process and return redirection URI on which the user should give a consent for our application to access resources.

T

timestamp(String) - Method in interface org.glassfish.jersey.client.oauth1.OAuth1Builder
Set the timestamp.

V

version(String) - Method in interface org.glassfish.jersey.client.oauth1.OAuth1Builder
Set the version of the OAuth protocol.

A B C E F G L N O R S T V

Copyright © 2007-2014, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.