A C G H I N O P R S T U V W

A

addHeaderValue(String, String) - Method in interface com.sun.jersey.oauth.signature.OAuthRequest
Adds a header with the given name and value.
AUTHORIZATION_HEADER - Static variable in class com.sun.jersey.oauth.signature.OAuthParameters
Name of HTTP authorization header.

C

CALLBACK - Static variable in class com.sun.jersey.oauth.signature.OAuthParameters
Name of parameter containing the callback URL.
callback(String) - Method in class com.sun.jersey.oauth.signature.OAuthParameters
Builder pattern method to return OAuthParameters after setting callback URL.
CALLBACK_CONFIRMED - Static variable in class com.sun.jersey.oauth.signature.OAuthParameters
Name of parameter containing the token secret.
com.sun.jersey.oauth.signature - package com.sun.jersey.oauth.signature
 
CONSUMER_KEY - Static variable in class com.sun.jersey.oauth.signature.OAuthParameters
Name of parameter containing the consumer key.
consumerKey(String) - Method in class com.sun.jersey.oauth.signature.OAuthParameters
Builder pattern method to return OAuthParameters after setting consumer key.
consumerSecret(String) - Method in class com.sun.jersey.oauth.signature.OAuthSecrets
Builder pattern method to return OAuthSecrets after setting consumer secret.

G

generate(OAuthRequest, OAuthParameters, OAuthSecrets) - Static method in class com.sun.jersey.oauth.signature.OAuthSignature
Generates and returns an OAuth signature for the given request, parameters and secrets.
getCallback() - Method in class com.sun.jersey.oauth.signature.OAuthParameters
Returns the callback URL.
getConsumerKey() - Method in class com.sun.jersey.oauth.signature.OAuthParameters
Returns the consumer key.
getConsumerSecret() - Method in class com.sun.jersey.oauth.signature.OAuthSecrets
Returns the consumer secret.
getHeaderValues(String) - Method in interface com.sun.jersey.oauth.signature.OAuthRequest
Returns the value(s) of the specified request header.
getNonce() - Method in class com.sun.jersey.oauth.signature.OAuthParameters
Returns the nonce, a value that should be unique for a given timestamp.
getParameterNames() - Method in interface com.sun.jersey.oauth.signature.OAuthRequest
Returns an Set of String objects containing the names of the parameters contained in the request.
getParameterValues(String) - Method in interface com.sun.jersey.oauth.signature.OAuthRequest
Returns an List of String objects containing the values of the specified request parameter, or null if the parameter does not exist.
getRealm() - Method in class com.sun.jersey.oauth.signature.OAuthParameters
Returns the protection realm for the request.
getRequestMethod() - Method in interface com.sun.jersey.oauth.signature.OAuthRequest
Returns the name of the HTTP method with which this request was made, for example, GET, POST, or PUT.
getRequestURL() - Method in interface com.sun.jersey.oauth.signature.OAuthRequest
Returns the URL of the request, including protocol, server name, optional port number, and server path.
getSignature() - Method in class com.sun.jersey.oauth.signature.OAuthParameters
Returns the signature for the request.
getSignatureMethod() - Method in class com.sun.jersey.oauth.signature.OAuthParameters
Returns the signature method used to sign the request.
getTimestamp() - Method in class com.sun.jersey.oauth.signature.OAuthParameters
Returns the timestamp, a value expected to be a positive integer, typically containing the number of seconds since January 1, 1970 00:00:00 GMT (epoch).
getToken() - Method in class com.sun.jersey.oauth.signature.OAuthParameters
Returns the request or access token.
getTokenSecret() - Method in class com.sun.jersey.oauth.signature.OAuthSecrets
Returns request or access token.
getVerifier() - Method in class com.sun.jersey.oauth.signature.OAuthParameters
Returns the verifier code.
getVersion() - Method in class com.sun.jersey.oauth.signature.OAuthParameters
Returns the protocol version.

H

HMAC_SHA1 - Class in com.sun.jersey.oauth.signature
An OAuth signature method that implements HMAC-SHA1.
HMAC_SHA1() - Constructor for class com.sun.jersey.oauth.signature.HMAC_SHA1
 

I

InvalidSecretException - Exception in com.sun.jersey.oauth.signature
Thrown to indicate that the OAuth secret supplied is invalid or otherwise unsupported.
InvalidSecretException() - Constructor for exception com.sun.jersey.oauth.signature.InvalidSecretException
Constructs an invalid OAuth secret exception with no detail message.
InvalidSecretException(String) - Constructor for exception com.sun.jersey.oauth.signature.InvalidSecretException
Constructs an invalid OAuth secret exception with the specified detail message.

N

NAME - Static variable in class com.sun.jersey.oauth.signature.HMAC_SHA1
 
name() - Method in class com.sun.jersey.oauth.signature.HMAC_SHA1
 
name() - Method in interface com.sun.jersey.oauth.signature.OAuthSignatureMethod
Returns the name of this signature method, as negotiated through the OAuth protocol.
NAME - Static variable in class com.sun.jersey.oauth.signature.PLAINTEXT
 
name() - Method in class com.sun.jersey.oauth.signature.PLAINTEXT
 
NAME - Static variable in class com.sun.jersey.oauth.signature.RSA_SHA1
 
name() - Method in class com.sun.jersey.oauth.signature.RSA_SHA1
 
NONCE - Static variable in class com.sun.jersey.oauth.signature.OAuthParameters
Name of parameter containing the nonce.
nonce(String) - Method in class com.sun.jersey.oauth.signature.OAuthParameters
Builder pattern method to return OAuthParameters after setting nonce.
nonce() - Method in class com.sun.jersey.oauth.signature.OAuthParameters
Builder pattern method to return OAuthParameters after setting nonce to a randomly-generated UUID.

O

OAuthParameters - Class in com.sun.jersey.oauth.signature
A data structure class that represents OAuth protocol parameters.
OAuthParameters() - Constructor for class com.sun.jersey.oauth.signature.OAuthParameters
 
OAuthRequest - Interface in com.sun.jersey.oauth.signature
Interface to be implemented as a wrapper around an HTTP request, so that digital signature can be generated and/or verified.
OAuthSecrets - Class in com.sun.jersey.oauth.signature
Contains the secrets used to generate and/or verify signatures.
OAuthSecrets() - Constructor for class com.sun.jersey.oauth.signature.OAuthSecrets
 
OAuthSignature - Class in com.sun.jersey.oauth.signature
Class used for processing an OAuth signature (signing or verifying).
OAuthSignature() - Constructor for class com.sun.jersey.oauth.signature.OAuthSignature
 
OAuthSignatureException - Exception in com.sun.jersey.oauth.signature
Thrown to indicate that an OAuth exception occurred.
OAuthSignatureException() - Constructor for exception com.sun.jersey.oauth.signature.OAuthSignatureException
Constructs an OAuth signature exception with no detail message.
OAuthSignatureException(String) - Constructor for exception com.sun.jersey.oauth.signature.OAuthSignatureException
Constructs an OAuth signature exception with the specified detail message.
OAuthSignatureException(Throwable) - Constructor for exception com.sun.jersey.oauth.signature.OAuthSignatureException
Constructs an OAuth signature exception with the specified cause.
OAuthSignatureMethod - Interface in com.sun.jersey.oauth.signature
An interface representing the OAuth signature method.

P

PLAINTEXT - Class in com.sun.jersey.oauth.signature
An OAuth signature method that implements PLAINTEXT.
PLAINTEXT() - Constructor for class com.sun.jersey.oauth.signature.PLAINTEXT
 
put(String, String) - Method in class com.sun.jersey.oauth.signature.OAuthParameters
 

R

readRequest(OAuthRequest) - Method in class com.sun.jersey.oauth.signature.OAuthParameters
Reads a request for OAuth parameters, and populates this object.
REALM - Static variable in class com.sun.jersey.oauth.signature.OAuthParameters
Name of parameter containing the protection realm.
realm(String) - Method in class com.sun.jersey.oauth.signature.OAuthParameters
Builder pattern method to return OAuthParameters after setting protection realm.
RSA_SHA1 - Class in com.sun.jersey.oauth.signature
An OAuth signature method that implements RSA-SHA1.
RSA_SHA1() - Constructor for class com.sun.jersey.oauth.signature.RSA_SHA1
 

S

SCHEME - Static variable in class com.sun.jersey.oauth.signature.OAuthParameters
OAuth scheme in Authorization header.
setCallback(String) - Method in class com.sun.jersey.oauth.signature.OAuthParameters
Sets the callback URL.
setConsumerKey(String) - Method in class com.sun.jersey.oauth.signature.OAuthParameters
Sets the consumer key.
setConsumerSecret(String) - Method in class com.sun.jersey.oauth.signature.OAuthSecrets
 
setNonce(String) - Method in class com.sun.jersey.oauth.signature.OAuthParameters
Sets the nonce, a value that should be unique for a given timestamp.
setNonce() - Method in class com.sun.jersey.oauth.signature.OAuthParameters
Sets the nonce to contain a randomly-generated UUID.
setRealm(String) - Method in class com.sun.jersey.oauth.signature.OAuthParameters
Sets the protection realm for the request.
setSignature(String) - Method in class com.sun.jersey.oauth.signature.OAuthParameters
Sets the signature for the request.
setSignatureMethod(String) - Method in class com.sun.jersey.oauth.signature.OAuthParameters
Sets the signature method used to sign the request.
setTimestamp(String) - Method in class com.sun.jersey.oauth.signature.OAuthParameters
Sets the timestamp.
setTimestamp() - Method in class com.sun.jersey.oauth.signature.OAuthParameters
Sets the timestamp to the current time as number of seconds since epoch.
setToken(String) - Method in class com.sun.jersey.oauth.signature.OAuthParameters
Sets the request or access token.
setTokenSecret(String) - Method in class com.sun.jersey.oauth.signature.OAuthSecrets
Sets request or access token.
setVerifier(String) - Method in class com.sun.jersey.oauth.signature.OAuthParameters
Sets the verifier code.
setVersion(String) - Method in class com.sun.jersey.oauth.signature.OAuthParameters
Sets the protocol version.
setVersion() - Method in class com.sun.jersey.oauth.signature.OAuthParameters
Sets the protocol version to the default value of 1.0.
sign(String, OAuthSecrets) - Method in class com.sun.jersey.oauth.signature.HMAC_SHA1
Generates the HMAC-SHA1 signature of OAuth request elements.
sign(OAuthRequest, OAuthParameters, OAuthSecrets) - Static method in class com.sun.jersey.oauth.signature.OAuthSignature
Generates an OAuth signature for the given request, parameters and secrets, and stores it as a signature parameter, and writes the OAuth parameters to the request as an Authorization header.
sign(String, OAuthSecrets) - Method in interface com.sun.jersey.oauth.signature.OAuthSignatureMethod
Signs the data using the supplied secret(s).
sign(String, OAuthSecrets) - Method in class com.sun.jersey.oauth.signature.PLAINTEXT
Generates the PLAINTEXT signature.
sign(String, OAuthSecrets) - Method in class com.sun.jersey.oauth.signature.RSA_SHA1
Generates the RSA-SHA1 signature of OAuth request elements.
SIGNATURE - Static variable in class com.sun.jersey.oauth.signature.OAuthParameters
Name of parameter containing the signature.
signature(String) - Method in class com.sun.jersey.oauth.signature.OAuthParameters
Builder pattern method to return OAuthParameters after setting signature.
SIGNATURE_METHOD - Static variable in class com.sun.jersey.oauth.signature.OAuthParameters
Name of parameter containing the signature method.
signatureMethod(String) - Method in class com.sun.jersey.oauth.signature.OAuthParameters
Builder pattern method to return OAuthParameters after setting signature method.

T

TIMESTAMP - Static variable in class com.sun.jersey.oauth.signature.OAuthParameters
Name of parameter containing the timestamp.
timestamp(String) - Method in class com.sun.jersey.oauth.signature.OAuthParameters
Builder pattern method to return OAuthParameters after setting timestamp.
timestamp() - Method in class com.sun.jersey.oauth.signature.OAuthParameters
Builder pattern method to return OAuthParameters after setting timestamp to the current time.
TOKEN - Static variable in class com.sun.jersey.oauth.signature.OAuthParameters
Name of parameter containing the access/request token.
token(String) - Method in class com.sun.jersey.oauth.signature.OAuthParameters
Builder pattern method to return OAuthParameters after setting token.
TOKEN_SECRET - Static variable in class com.sun.jersey.oauth.signature.OAuthParameters
Name of parameter containing the token secret.
tokenSecret(String) - Method in class com.sun.jersey.oauth.signature.OAuthSecrets
Builder pattern method to return OAuthSecrets after setting consumer secret.

U

UnsupportedSignatureMethodException - Exception in com.sun.jersey.oauth.signature
Thrown to indicate that the OAuth signature method requested is not supported.
UnsupportedSignatureMethodException() - Constructor for exception com.sun.jersey.oauth.signature.UnsupportedSignatureMethodException
Constructs an unsupported OAuth method exception with no detail message.
UnsupportedSignatureMethodException(String) - Constructor for exception com.sun.jersey.oauth.signature.UnsupportedSignatureMethodException
Constructs an unsupported OAuth method exception with the specified detail message.

V

VERIFIER - Static variable in class com.sun.jersey.oauth.signature.OAuthParameters
Name of parameter containing the verifier code.
verifier(String) - Method in class com.sun.jersey.oauth.signature.OAuthParameters
Builder pattern method to return OAuthParameters after setting verifier code.
verify(String, OAuthSecrets, String) - Method in class com.sun.jersey.oauth.signature.HMAC_SHA1
Verifies the HMAC-SHA1 signature of OAuth request elements.
verify(OAuthRequest, OAuthParameters, OAuthSecrets) - Static method in class com.sun.jersey.oauth.signature.OAuthSignature
Verifies the OAuth signature for a given request, parameters and secrets.
verify(String, OAuthSecrets, String) - Method in interface com.sun.jersey.oauth.signature.OAuthSignatureMethod
Verifies the signature for the data using the supplied secret(s).
verify(String, OAuthSecrets, String) - Method in class com.sun.jersey.oauth.signature.PLAINTEXT
Verifies the PLAINTEXT signature.
verify(String, OAuthSecrets, String) - Method in class com.sun.jersey.oauth.signature.RSA_SHA1
Verifies the RSA-SHA1 signature of OAuth request elements.
VERSION - Static variable in class com.sun.jersey.oauth.signature.OAuthParameters
Name of parameter containing the protocol version.
version(String) - Method in class com.sun.jersey.oauth.signature.OAuthParameters
Builder pattern method to return OAuthParameters after setting version.
version() - Method in class com.sun.jersey.oauth.signature.OAuthParameters
Builder pattern method to return OAuthParameters after setting version to the default value of 1.0.

W

writeRequest(OAuthRequest) - Method in class com.sun.jersey.oauth.signature.OAuthParameters
Writes the OAuth parameters to a request, as an Authorization header.

A C G H I N O P R S T U V W

Copyright © 2014 Oracle Corporation. All Rights Reserved.