Uses of Class
org.glassfish.jersey.oauth1.signature.OAuth1SignatureException
-
Packages that use OAuth1SignatureException Package Description org.glassfish.jersey.oauth1.signature Jersey OAuth 1 Signature API and Implementation. -
-
Uses of OAuth1SignatureException in org.glassfish.jersey.oauth1.signature
Subclasses of OAuth1SignatureException in org.glassfish.jersey.oauth1.signature Modifier and Type Class Description class
InvalidSecretException
Thrown to indicate that the OAuth secret supplied is invalid or otherwise unsupported.class
UnsupportedSignatureMethodException
Thrown to indicate that the OAuth signature method requested is not supported.Methods in org.glassfish.jersey.oauth1.signature that throw OAuth1SignatureException Modifier and Type Method Description private java.lang.String
OAuth1Signature. baseString(OAuth1Request request, OAuth1Parameters params)
Assembles request base string for which a digital signature is to be generated/verified, per section 9.1.3 of the OAuth 1.0 specification.private java.net.URI
OAuth1Signature. constructRequestURL(OAuth1Request request)
Constructs the request URI, per section 9.1.2 of the OAuth 1.0 specification.java.lang.String
OAuth1Signature. generate(OAuth1Request request, OAuth1Parameters params, OAuth1Secrets secrets)
Generates and returns an OAuth signature for the given request, parameters and secrets.void
OAuth1Signature. sign(OAuth1Request request, OAuth1Parameters params, OAuth1Secrets secrets)
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.boolean
OAuth1Signature. verify(OAuth1Request request, OAuth1Parameters params, OAuth1Secrets secrets)
Verifies the OAuth signature for a given request, parameters and secrets.
-