Module org.mule.oauth.client.api
Interface AuthorizationCodeDanceCallbackContext
-
public interface AuthorizationCodeDanceCallbackContextImplementations keep context information between the before and after callbacks set for anAuthorizationCodeOAuthDancer.- Since:
- 1.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Optional<Object>getParameter(String paramKey)Allows access to an attribute of this context, as defined by the implementation.
-
-
-
Method Detail
-
getParameter
Optional<Object> getParameter(String paramKey)
Allows access to an attribute of this context, as defined by the implementation.- Parameters:
paramKey- the key of the parameter to get from the context.- Returns:
- an
Optionalcontaining the value for the requestedparamKeyif present, oremptyif not.
-
-