|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use OAuthException | |
---|---|
com.simpleyql | |
net.oauth | Fundamental classes and algorithms for implementing OAuth. |
net.oauth.client | |
net.oauth.signature | Classes to compute and verify digital signatures. |
Uses of OAuthException in com.simpleyql |
---|
Methods in com.simpleyql that throw OAuthException | |
---|---|
void |
ApiImpl.askAuthorization(javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response,
java.lang.String finalUrl)
Redirects the current user to the authorization page. |
void |
Api.askAuthorization(javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response,
java.lang.String finalUrl)
Redirects the current user to the authorization page. |
QueryResult |
ApiImpl.query(java.lang.String yql,
java.lang.String authdata)
|
QueryResult |
Api.query(java.lang.String yql,
java.lang.String token)
Sends a YQL request to Yahoo |
Uses of OAuthException in net.oauth |
---|
Subclasses of OAuthException in net.oauth | |
---|---|
class |
OAuthProblemException
An OAuth-related problem, described using a set of named parameters. |
Methods in net.oauth that throw OAuthException | |
---|---|
void |
OAuthMessage.addRequiredParameters(OAuthAccessor accessor)
Add some of the parameters needed to request access to a protected resource, if they aren't already in the message. |
protected void |
SimpleOAuthValidator.checkSingleParameters(OAuthMessage message)
Throw an exception if any SINGLE_PARAMETERS occur repeatedly. |
OAuthMessage |
OAuthAccessor.newRequestMessage(java.lang.String method,
java.lang.String url,
java.util.Collection<? extends java.util.Map.Entry> parameters)
|
OAuthMessage |
OAuthAccessor.newRequestMessage(java.lang.String method,
java.lang.String url,
java.util.Collection<? extends java.util.Map.Entry> parameters,
java.io.InputStream body)
Construct a request message containing the given parameters but no body. |
void |
OAuthMessage.sign(OAuthAccessor accessor)
Add a signature to the message. |
void |
OAuthMessage.validateMessage(OAuthAccessor accessor,
OAuthValidator validator)
Deprecated. use validator.validateMessage(this, accessor) instead. |
void |
SimpleOAuthValidator.validateMessage(OAuthMessage message,
OAuthAccessor accessor)
|
void |
OAuthValidator.validateMessage(OAuthMessage message,
OAuthAccessor accessor)
Check that the given message from the given accessor is valid. |
protected void |
SimpleOAuthValidator.validateSignature(OAuthMessage message,
OAuthAccessor accessor)
|
protected void |
SimpleOAuthValidator.validateVersion(OAuthMessage message)
|
Uses of OAuthException in net.oauth.client |
---|
Methods in net.oauth.client that throw OAuthException | |
---|---|
OAuthMessage |
OAuthClient.getAccessToken(OAuthAccessor accessor,
java.lang.String httpMethod,
java.util.Collection<? extends java.util.Map.Entry> parameters)
Get an access token from the service provider, in exchange for an authorized request token. |
void |
OAuthClient.getRequestToken(OAuthAccessor accessor)
Get a fresh request token from the service provider. |
void |
OAuthClient.getRequestToken(OAuthAccessor accessor,
java.lang.String httpMethod)
Get a fresh request token from the service provider. |
void |
OAuthClient.getRequestToken(OAuthAccessor accessor,
java.lang.String httpMethod,
java.util.Collection<? extends java.util.Map.Entry> parameters)
Get a fresh request token from the service provider. |
OAuthMessage |
OAuthClient.getRequestTokenResponse(OAuthAccessor accessor,
java.lang.String httpMethod,
java.util.Collection<? extends java.util.Map.Entry> parameters)
Get a fresh request token from the service provider. |
OAuthMessage |
OAuthClient.invoke(OAuthAccessor accessor,
java.lang.String url,
java.util.Collection<? extends java.util.Map.Entry> parameters)
Construct a request message, send it to the service provider and get the response. |
OAuthMessage |
OAuthClient.invoke(OAuthAccessor accessor,
java.lang.String httpMethod,
java.lang.String url,
java.util.Collection<? extends java.util.Map.Entry> parameters)
Construct a request message, send it to the service provider and get the response. |
OAuthMessage |
OAuthClient.invoke(OAuthMessage request,
OAuthClient.ParameterStyle style)
Deprecated. |
OAuthMessage |
OAuthClient.invoke(OAuthMessage request,
ParameterStyle style)
Send a request message to the service provider and get the response. |
Uses of OAuthException in net.oauth.signature |
---|
Methods in net.oauth.signature that throw OAuthException | |
---|---|
protected java.lang.String |
OAuthSignatureMethod.getSignature(OAuthMessage message)
|
protected java.lang.String |
RSA_SHA1.getSignature(java.lang.String baseString)
|
protected abstract java.lang.String |
OAuthSignatureMethod.getSignature(java.lang.String baseString)
Compute the signature for the given base string. |
protected void |
RSA_SHA1.initialize(java.lang.String name,
OAuthAccessor accessor)
|
protected void |
OAuthSignatureMethod.initialize(java.lang.String name,
OAuthAccessor accessor)
|
protected boolean |
RSA_SHA1.isValid(java.lang.String signature,
java.lang.String baseString)
|
protected abstract boolean |
OAuthSignatureMethod.isValid(java.lang.String signature,
java.lang.String baseString)
Decide whether the signature is valid. |
static OAuthSignatureMethod |
OAuthSignatureMethod.newMethod(java.lang.String name,
OAuthAccessor accessor)
The factory for signature methods. |
static OAuthSignatureMethod |
OAuthSignatureMethod.newSigner(OAuthMessage message,
OAuthAccessor accessor)
|
void |
OAuthSignatureMethod.sign(OAuthMessage message)
Add a signature to the message. |
void |
OAuthSignatureMethod.validate(OAuthMessage message)
Check whether the message has a valid signature. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |