Class AuthenticationMechanismResult
- java.lang.Object
-
- com.ibm.security.access.extension.authn.AuthenticationMechanismResult
-
public class AuthenticationMechanismResult extends java.lang.Object
This class represents an authentication result returned by authentication mechanism.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AuthenticationMechanismResult
abort(AuthenticationMechanismResultAbortTask task)
Create an authentication abort result with the specified task.AuthenticationMechanismResultTask
getTask()
Get the task.AuthenticationMechanismResultType
getType()
Get the type.static AuthenticationMechanismResult
pause(AuthenticationMechanismResultPauseTask task)
Create an authentication pause result with the specified task.static AuthenticationMechanismResult
success()
Create an authentication success result.
-
-
-
Method Detail
-
success
public static AuthenticationMechanismResult success()
Create an authentication success result.- Returns:
- An authentication success result.
-
pause
public static AuthenticationMechanismResult pause(AuthenticationMechanismResultPauseTask task)
Create an authentication pause result with the specified task.- Parameters:
task
- The task.- Returns:
- An authentication pause result.
-
abort
public static AuthenticationMechanismResult abort(AuthenticationMechanismResultAbortTask task)
Create an authentication abort result with the specified task.- Parameters:
task
- The task.- Returns:
- An authentication abort result.
-
getType
public AuthenticationMechanismResultType getType()
Get the type.- Returns:
- The type.
-
getTask
public AuthenticationMechanismResultTask getTask()
Get the task.- Returns:
- The task.
-
-