com.ibm.commerce.usermanagement.commands
Interface PostMemberRoleAssignCmd

All Superinterfaces:
TaskCommand
All Known Implementing Classes:
PostMemberRoleAssignCmdImpl

public interface PostMemberRoleAssignCmd
extends TaskCommand

A task command called by MemberRoleAssign 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 is:
 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
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
TypedProperty getRequestProperties()
Get request properties.
TypedProperty getResponseProperties()
Get response properties.
void setRequestProperties(TypedProperty aRequestProperties)
Set request properties
void setResponseProperties(TypedProperty aResponseProperties)
Set response properties

 





Field Detail



COPYRIGHT



public static final java.lang.String COPYRIGHT

IBM Copyright notice field.
See Also:
Constant Field Values




NAME



public static final java.lang.String NAME

The name of this command.
See Also:
Constant Field Values




defaultCommandClassName



public static final java.lang.String defaultCommandClassName

The default implementation of this command.
See Also:
Constant Field Values






Method Detail



getRequestProperties



public TypedProperty getRequestProperties()

Get request properties.
Returns:
Request Properties




getResponseProperties



public TypedProperty getResponseProperties()

Get response properties.
Returns:
Response properties




setRequestProperties



public void setRequestProperties(TypedProperty aRequestProperties)

Set request properties
Parameters:
aRequestProperties - Request properties




setResponseProperties



public void setResponseProperties(TypedProperty aResponseProperties)

Set response properties
Parameters:
aResponseProperties - Response properties












Feedback