public class OAuthRedirectionState extends Object implements Serializable
| Constructor and Description |
|---|
OAuthRedirectionState() |
| Modifier and Type | Method and Description |
|---|---|
String |
getAudience() |
String |
getClientCodeChallenge() |
String |
getClientId()
Gets the client id which needs to be retained in a hidden form field
|
String |
getProposedScope()
Gets the requested scope which needs to be retained in a hidden form field
|
String |
getRedirectUri()
Gets the redirect uri which needs to be retained in a hidden form field
|
String |
getState()
Gets the client state token which needs to be retained in a hidden form field
|
void |
setAudience(String audience) |
void |
setClientCodeChallenge(String clientCodeChallenge) |
void |
setClientId(String clientId)
Sets the client id which needs to be retained in a hidden form field
|
void |
setProposedScope(String proposedScope)
Sets the requested scope which needs to be retained in a hidden form field
|
void |
setRedirectUri(String redirectUri)
Sets the redirect uri which needs to be retained in a hidden form field
|
void |
setState(String state)
Sets the client state token which needs to be retained in a hidden form field
|
public void setClientId(String clientId)
clientId - the client idpublic String getClientId()
public void setRedirectUri(String redirectUri)
redirectUri - the redirect uripublic String getRedirectUri()
public void setState(String state)
state - the statepublic String getState()
public void setProposedScope(String proposedScope)
proposedScope - the scopepublic String getProposedScope()
public String getAudience()
public void setAudience(String audience)
public String getClientCodeChallenge()
public void setClientCodeChallenge(String clientCodeChallenge)
Apache CXF