Class OAuthRedirectionState

java.lang.Object
org.apache.cxf.rs.security.oauth2.common.OAuthRedirectionState
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
OAuthAuthorizationData

public class OAuthRedirectionState extends Object implements Serializable
See Also:
  • Constructor Details

    • OAuthRedirectionState

      public OAuthRedirectionState()
  • Method Details

    • setClientId

      public void setClientId(String clientId)
      Sets the client id which needs to be retained in a hidden form field
      Parameters:
      clientId - the client id
    • getClientId

      public String getClientId()
      Gets the client id which needs to be retained in a hidden form field
      Returns:
      the client id
    • setRedirectUri

      public void setRedirectUri(String redirectUri)
      Sets the redirect uri which needs to be retained in a hidden form field
      Parameters:
      redirectUri - the redirect uri
    • getRedirectUri

      public String getRedirectUri()
      Gets the redirect uri which needs to be retained in a hidden form field
      Returns:
      the redirect uri
    • setState

      public void setState(String state)
      Sets the client state token which needs to be retained in a hidden form field
      Parameters:
      state - the state
    • getState

      public String getState()
      Gets the client state token which needs to be retained in a hidden form field
      Returns:
    • setProposedScope

      public void setProposedScope(String proposedScope)
      Sets the requested scope which needs to be retained in a hidden form field
      Parameters:
      proposedScope - the scope
    • getProposedScope

      public String getProposedScope()
      Gets the requested scope which needs to be retained in a hidden form field
      Returns:
      the scope
    • getAudience

      public String getAudience()
    • setAudience

      public void setAudience(String audience)
    • getClientCodeChallenge

      public String getClientCodeChallenge()
    • setClientCodeChallenge

      public void setClientCodeChallenge(String clientCodeChallenge)
    • getNonce

      public String getNonce()
    • setNonce

      public void setNonce(String nonce)
    • getResponseType

      public String getResponseType()
    • setResponseType

      public void setResponseType(String responseType)
    • getExtraProperties

      public Map<String,String> getExtraProperties()
    • setExtraProperties

      public void setExtraProperties(Map<String,String> extraProperties)
    • getClientCodeChallengeMethod

      public String getClientCodeChallengeMethod()
    • setClientCodeChallengeMethod

      public void setClientCodeChallengeMethod(String clientCodeChallengeMethod)