Class AuthenticationMechanismResult
- java.lang.Object
-
- com.ibm.security.access.extension.authn.AuthenticationMechanismResult
-
public class AuthenticationMechanismResult extends java.lang.ObjectThis 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 AuthenticationMechanismResultabort(AuthenticationMechanismResultAbortTask task)Create an authentication abort result with the specified task.AuthenticationMechanismResultTaskgetTask()Get the task.AuthenticationMechanismResultTypegetType()Get the type.static AuthenticationMechanismResultpause(AuthenticationMechanismResultPauseTask task)Create an authentication pause result with the specified task.static AuthenticationMechanismResultsuccess()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.
-
-