|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
public interface OAuthSignatureMethod
An interface representing the OAuth signature method. Concrete implementations are loaded through a service loader.
| Method Summary | |
|---|---|
java.lang.String |
name()
Returns the name of this signature method, as negotiated through the OAuth protocol. |
java.lang.String |
sign(java.lang.String elements,
OAuthSecrets secrets)
Signs the data using the supplied secret(s). |
boolean |
verify(java.lang.String elements,
OAuthSecrets secrets,
java.lang.String signature)
Verifies the signature for the data using the supplied secret(s). |
| Method Detail |
|---|
java.lang.String name()
java.lang.String sign(java.lang.String elements,
OAuthSecrets secrets)
throws InvalidSecretException
elements - a String that contains the request elements to be signed.secrets - the secret(s) to use to sign the data.
String that contains the signature.
InvalidSecretException - if a supplied secret is not valid.
boolean verify(java.lang.String elements,
OAuthSecrets secrets,
java.lang.String signature)
throws InvalidSecretException
elements - a String that contains the request elements to be verified.secrets - the secret(s) to use to verify the signature.signature - a String that contains the signature to be verified.
InvalidSecretException - if a supplied secret is not valid.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||