Uses of Class
net.oauth.OAuthMessage
-
Packages that use OAuthMessage Package Description net.oauth net.oauth.client net.oauth.http net.oauth.server net.oauth.signature -
-
Uses of OAuthMessage in net.oauth
Methods in net.oauth that return OAuthMessage Modifier and Type Method Description OAuthMessageOAuthAccessor. newRequestMessage(String method, String url, Collection<? extends Map.Entry> parameters)OAuthMessageOAuthAccessor. newRequestMessage(String method, String url, Collection<? extends Map.Entry> parameters, InputStream body)Construct a request message containing the given parameters but no body.Methods in net.oauth with parameters of type OAuthMessage Modifier and Type Method Description protected voidSimpleOAuthValidator. checkSingleParameters(OAuthMessage message)Throw an exception if any SINGLE_PARAMETERS occur repeatedly.voidOAuthValidator. validateMessage(OAuthMessage message, OAuthAccessor accessor)Check that the given message from the given accessor is valid.voidSimpleOAuthValidator. validateMessage(OAuthMessage message, OAuthAccessor accessor)protected voidSimpleOAuthValidator. validateSignature(OAuthMessage message, OAuthAccessor accessor)protected voidSimpleOAuthValidator. validateTimestampAndNonce(OAuthMessage message)This implementation doesn't check the nonce value.protected voidSimpleOAuthValidator. validateVersion(OAuthMessage message) -
Uses of OAuthMessage in net.oauth.client
Subclasses of OAuthMessage in net.oauth.client Modifier and Type Class Description classOAuthResponseMessageAn HTTP response, encapsulated as an OAuthMessage.Methods in net.oauth.client that return OAuthMessage Modifier and Type Method Description OAuthMessageOAuthClient. getAccessToken(OAuthAccessor accessor, String httpMethod, Collection<? extends Map.Entry> parameters)Get an access token from the service provider, in exchange for an authorized request token.OAuthMessageOAuthClient. invoke(OAuthAccessor accessor, String httpMethod, String url, Collection<? extends Map.Entry> parameters)Construct a request message, send it to the service provider and get the response.OAuthMessageOAuthClient. invoke(OAuthAccessor accessor, String url, Collection<? extends Map.Entry> parameters)Construct a request message, send it to the service provider and get the response.OAuthMessageOAuthClient. invoke(OAuthMessage request, OAuthClient.ParameterStyle style)Deprecated.OAuthMessageOAuthClient. invoke(OAuthMessage request, ParameterStyle style)Send a request message to the service provider and get the response.Methods in net.oauth.client with parameters of type OAuthMessage Modifier and Type Method Description OAuthResponseMessageOAuthClient. access(OAuthMessage request, OAuthClient.ParameterStyle style)Deprecated.OAuthResponseMessageOAuthClient. access(OAuthMessage request, ParameterStyle style)Send a request and return the response.OAuthMessageOAuthClient. invoke(OAuthMessage request, OAuthClient.ParameterStyle style)Deprecated.OAuthMessageOAuthClient. invoke(OAuthMessage request, ParameterStyle style)Send a request message to the service provider and get the response. -
Uses of OAuthMessage in net.oauth.http
Methods in net.oauth.http with parameters of type OAuthMessage Modifier and Type Method Description static HttpMessageHttpMessage. newRequest(OAuthMessage from, ParameterStyle style)Construct an HTTP request from this OAuth message. -
Uses of OAuthMessage in net.oauth.server
Subclasses of OAuthMessage in net.oauth.server Modifier and Type Class Description classHttpRequestMessageAn HttpServletRequest, encapsulated as an OAuthMessage.Methods in net.oauth.server that return OAuthMessage Modifier and Type Method Description static OAuthMessageOAuthServlet. getMessage(HttpServletRequest request, String URL)Extract the parts of the given request that are relevant to OAuth. -
Uses of OAuthMessage in net.oauth.signature
Methods in net.oauth.signature with parameters of type OAuthMessage Modifier and Type Method Description static StringOAuthSignatureMethod. getBaseString(OAuthMessage message)protected StringOAuthSignatureMethod. getSignature(OAuthMessage message)static OAuthSignatureMethodOAuthSignatureMethod. newSigner(OAuthMessage message, OAuthAccessor accessor)voidOAuthSignatureMethod. sign(OAuthMessage message)Add a signature to the message.voidOAuthSignatureMethod. validate(OAuthMessage message)Check whether the message has a valid signature.
-