Interface AuthenticationStep
-
public interface AuthenticationStep
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Object[]
getArgs()
Get the arguments for this stepjava.lang.String
getKey()
Get the key for this stepjava.lang.String
getMessage()
get a localised human readable message for this key/argumentsboolean
isSuccess()
is success
-
-
-
Method Detail
-
getKey
java.lang.String getKey()
Get the key for this step- Returns:
- the key
-
isSuccess
boolean isSuccess()
is success- Returns:
- true success
-
getArgs
java.lang.Object[] getArgs()
Get the arguments for this step- Returns:
- the arguments
-
getMessage
java.lang.String getMessage()
get a localised human readable message for this key/arguments- Returns:
- the message for this step
-
-