com.ibm.commerce.security.commands
Interface AccountLockoutPolicyCmd
-
- All Superinterfaces:
- com.ibm.websphere.command.CacheableCommand, com.ibm.commerce.command.CacheableECCommand, com.ibm.websphere.command.Command, com.ibm.websphere.command.CommandCaller, ECCommand, java.io.Serializable, com.ibm.websphere.command.TargetableCommand, TaskCommand
- All Known Implementing Classes:
- AccountLockoutPolicyCmdImpl
public interface AccountLockoutPolicyCmd extends TaskCommand
This task command is called by every command that verifies or updates of user credentials.
Before executing this task command, the following sets should be performed:
setLogonId setAuthenticationStatus
-
-
Field Summary
Fields Modifier and Type Field and Description static java.lang.String
COPYRIGHT
Copyright statementstatic java.lang.String
defaultCommandClassName
The default command implementation class.static java.lang.String
NAME
The command name.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method and Description void
setAuthenticationStatus(boolean valid_credentials)
Sets the authentication result: true (when user provided valid credentials), false (otherwise)void
setLogonId(java.lang.String strLogonId)
Sets the Logon ID under which the current user wishes to log on.-
Methods inherited from interface com.ibm.websphere.command.CacheableCommand
executeFromCache, getCaller, getEntryInfo, getId, getSharingPolicy, postExecute, preExecute, setCaller, updateCache
-
Methods inherited from interface com.ibm.websphere.command.TargetableCommand
getCommandTarget, getCommandTargetName, hasOutputProperties, performExecute, setCommandTarget, setCommandTargetName, setOutputProperties
-
Methods inherited from interface com.ibm.commerce.command.ECCommand
checkIsAllowed, checkResourcePermission, createCommandExecutionEvent, getAccCheck, getCommandContext, getCommandIfName, getCommandName, getCommandStoreId, getDefaultProperties, getExceptionInvokeParameters, getPostInvokeParameters, getPreInvokeParameters, getResources, getStoreId, getUser, getUserId, performExecute, setAccCheck, setCommandContext, setCommandIfName, setCommandStoreId, setDefaultProperties, validateParameters
-
-
-
-
Field Detail
-
COPYRIGHT
static final java.lang.String COPYRIGHT
Copyright statement- See Also:
- Constant Field Values
-
NAME
static final java.lang.String NAME
The command name.- See Also:
- Constant Field Values
-
defaultCommandClassName
static final java.lang.String defaultCommandClassName
The default command implementation class.- See Also:
- Constant Field Values
-
-
Method Detail
-
setAuthenticationStatus
void setAuthenticationStatus(boolean valid_credentials)
Sets the authentication result: true (when user provided valid credentials), false (otherwise)- Parameters:
valid_credentials
- boolean
-
setLogonId
void setLogonId(java.lang.String strLogonId)
Sets the Logon ID under which the current user wishes to log on.- Parameters:
strLogonID
- The Login ID.
-
-