Interface OAuthParametersApplier
-
- All Known Implementing Classes:
BodyURLEncodedParametersApplier
,ClientHeaderParametersApplier
,FragmentParametersApplier
,JSONBodyParametersApplier
,QueryParameterApplier
,WWWAuthHeaderParametersApplier
public interface OAuthParametersApplier
Applies given parameters to the OAuth message. Provided implementations include OAuth parameters in one of those:- HTTP request URI Query
- HTTP request entity-body with application/x-www-form-urlencoded encoding
- HTTP request entity-body with application/json encoding
- HTTP request Authorization/WWW-Authenticate header
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description OAuthMessage
applyOAuthParameters(OAuthMessage message, java.util.Map<java.lang.String,java.lang.Object> params)
-
-
-
Method Detail
-
applyOAuthParameters
OAuthMessage applyOAuthParameters(OAuthMessage message, java.util.Map<java.lang.String,java.lang.Object> params) throws OAuthSystemException
- Throws:
OAuthSystemException
-
-