Package com.pingidentity.sdk
Class AuthenticationSelectorContext
- java.lang.Object
-
- com.pingidentity.sdk.AuthenticationSelectorContext
-
- All Implemented Interfaces:
Serializable
public class AuthenticationSelectorContext extends Object implements Serializable
This class contains context data resulting from the Authentication Selection process.- Since:
- 7.3
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classAuthenticationSelectorContext.ResultType
-
Constructor Summary
Constructors Constructor Description AuthenticationSelectorContext()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetResult()Gets the result value as a String.AuthenticationSelectorContext.ResultTypegetResultType()Gets theAuthenticationSelectorContext.ResultTypeof the result.voidsetResult(String result)Sets the result value as a String.voidsetResultType(AuthenticationSelectorContext.ResultType resultType)Sets theAuthenticationSelectorContext.ResultTypeof the result.
-
-
-
Method Detail
-
getResultType
public AuthenticationSelectorContext.ResultType getResultType()
Gets theAuthenticationSelectorContext.ResultTypeof the result.- Returns:
- the result type as a value of the ResultType enumeration
-
setResultType
public void setResultType(AuthenticationSelectorContext.ResultType resultType)
Sets theAuthenticationSelectorContext.ResultTypeof the result.- Parameters:
resultType- the result type of the AuthenticationSelectorContext instance
-
getResult
public String getResult()
Gets the result value as a String.- Returns:
- the result value as a String
-
setResult
public void setResult(String result)
Sets the result value as a String.- Parameters:
result- the result value of the AuthenticationSelectorContext instance
-
-