Class Completed
- java.lang.Object
-
- com.pingidentity.sdk.api.authn.model.state.Completed
-
- All Implemented Interfaces:
Serializable
public class Completed extends Object implements Serializable
The model for theCOMPLETEDstate.- Since:
- 9.3
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Completed()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,String>getAuthorizeResponse()For an OAuth flow using the pi.flow response mode, this field contains the authorization response parameters.UsergetUser()For an OAuth flow using the pi.flow response mode, this field contains the user information obtained during authentication.voidsetAuthorizeResponse(Map<String,String> authorizeResponse)Set the OAuth authorization response parameters.voidsetUser(User user)Set the user information obtained during authentication.
-
-
-
Method Detail
-
getAuthorizeResponse
public Map<String,String> getAuthorizeResponse()
For an OAuth flow using the pi.flow response mode, this field contains the authorization response parameters.
-
setAuthorizeResponse
public void setAuthorizeResponse(Map<String,String> authorizeResponse)
Set the OAuth authorization response parameters.
-
getUser
public User getUser()
For an OAuth flow using the pi.flow response mode, this field contains the user information obtained during authentication.
-
setUser
public void setUser(User user)
Set the user information obtained during authentication.
-
-