com.ibm.commerce.usermanagement.commands
Interface PostOrgEntityUpdateCmd
-
- 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:
- PostOrgEntityUpdateCmdImpl, SOIPostOrgEntityUpdateCmdImpl
public interface PostOrgEntityUpdateCmd extends TaskCommand
A task command called by OrgEntityUpdate command at the end of execution.
User can overwrite this task command to perform additional operation. Inputs of this task command are:setRequestProperties(TypedProperty) - set request properties. Called by corresponding controller command to pass in the request properties setResponseProperties(TypedProperty) - set request properties. Called by corresponding controller command to pass in the response properties
Outputs of this task command are:getRequestProperties(TypedProperty) - return request properties. Called by corresponding controller command to get the request properties getResponseProperties(TypedProperty) - return response properties. Called by corresponding controller command to get the response properties
-
-
Field Summary
Fields Modifier and Type Field and Description static java.lang.String
COPYRIGHT
IBM Copyright notice field.static java.lang.String
defaultCommandClassName
The default implementation of this command.static java.lang.String
NAME
The name of this command.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method and Description TypedProperty
getRequestProperties()
Gets request properties.TypedProperty
getResponseProperties()
Gets response properties.void
setRequestProperties(TypedProperty aRequestProperties)
Sets request propertiesvoid
setResponseProperties(TypedProperty aResponseProperties)
Sets response properties-
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
IBM Copyright notice field.- See Also:
- Constant Field Values
-
NAME
static final java.lang.String NAME
The name of this command.- See Also:
- Constant Field Values
-
defaultCommandClassName
static final java.lang.String defaultCommandClassName
The default implementation of this command.- See Also:
- Constant Field Values
-
-
Method Detail
-
getRequestProperties
TypedProperty getRequestProperties()
Gets request properties.- Returns:
- Request Properties
-
getResponseProperties
TypedProperty getResponseProperties()
Gets response properties.- Returns:
- Response properties
-
setRequestProperties
void setRequestProperties(TypedProperty aRequestProperties)
Sets request properties- Parameters:
aRequestProperties
- Request properties
-
setResponseProperties
void setResponseProperties(TypedProperty aResponseProperties)
Sets response properties- Parameters:
aResponseProperties
- Response properties
-
-