Uses of Interface
org.glassfish.jersey.oauth1.signature.OAuth1Request
Packages that use OAuth1Request
Package
Description
Jersey OAuth 1 Client API.
Jersey OAuth 1 Signature API and Implementation.
Jersey OAuth 1 Server internal implementation classes.
-
Uses of OAuth1Request in org.glassfish.jersey.client.oauth1
Classes in org.glassfish.jersey.client.oauth1 that implement OAuth1RequestModifier and TypeClassDescription(package private) class
Implements the OAuth signature library Request interface, wrapping a Jersey client request object. -
Uses of OAuth1Request in org.glassfish.jersey.oauth1.signature
Methods in org.glassfish.jersey.oauth1.signature with parameters of type OAuth1RequestModifier and TypeMethodDescriptionprivate 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 URI
OAuth1Signature.constructRequestURL
(OAuth1Request request) Constructs the request URI, per section 9.1.2 of the OAuth 1.0 specification.OAuth1Signature.generate
(OAuth1Request request, OAuth1Parameters params, OAuth1Secrets secrets) Generates and returns an OAuth signature for the given request, parameters and secrets.(package private) static String
OAuth1Signature.normalizeParameters
(OAuth1Request request, OAuth1Parameters params) Collects, sorts and concetenates the request parameters into a normalized string, per section 9.1.1.OAuth1Parameters.readRequest
(OAuth1Request request) Reads a request for OAuth parameters, and populates this object.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.OAuth1Parameters.writeRequest
(OAuth1Request request) Writes the OAuth parameters to a request, as an Authorization header. -
Uses of OAuth1Request in org.glassfish.jersey.server.oauth1.internal
Classes in org.glassfish.jersey.server.oauth1.internal that implement OAuth1RequestModifier and TypeClassDescriptionclass
Wraps a JerseyContainerRequestContext
object, implementing the OAuth signature libraryOAuth1Request
interface.