com.ibm.commerce.contract.commands
Interface ParticipantAddCmd

All Superinterfaces:
AccCommand, ControllerCommand, ECCommand, Protectable
All Known Implementing Classes:
ParticipantAddCmdImpl

public interface ParticipantAddCmd
extends ControllerCommand

Add a participant to either a trading agreement (Contract/Account) or a Contract terms and conditions (WebSphere Commerce Business Edition only).


Field Summary
static java.lang.String COPYRIGHT
IBM copyright notice field.
static java.lang.String defaultCommandClassName
The name of the default implementation class.
static java.lang.String NAME
The name of this interface.
Method Summary
void setInfo(java.lang.String info)
Sets information of the participant
void setMemberId(java.lang.Long memberId)
Sets member ID of the participant.
void setRole(java.lang.String role)
Sets the role type of the participant.
void setTcId(java.lang.Long tcId)
Sets ID of the term and condition to which the participant will be added
void setTradingId(java.lang.Long tradingId)
Sets ID of the trading agreement to which the participant will be added
Methods inherited from interface com.ibm.commerce.command.ControllerCommand
checkPermission, execute, getGeneric, getRequestProperties, getResolvedRequestProperties, getResponseProperties, getRetriable, getViewInputProperties, isGeneric, isRetriable, mergeProperties, setGeneric, setRequestProperties, setRetriable, setViewInputProperties
Methods inherited from interface com.ibm.commerce.command.AccCommand
accessControlCheck, getAccCheck, getForUserId, getResourceOwners, setAccCheck, setForUserId, setOwner
Methods inherited from interface com.ibm.commerce.command.ECCommand
checkIsAllowed, checkResourcePermission, createCommandExecutionEvent, getCommandContext, getCommandIfName, getCommandName, getCommandStoreId, getDefaultProperties, getResources, getStoreId, getUser, getUserId, performExecute, setCommandContext, setCommandIfName, setCommandStoreId, setDefaultProperties, validateParameters
Methods inherited from interface com.ibm.commerce.security.Protectable
fulfills, getOwner
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 interface.
See Also:
Constant Field Values

defaultCommandClassName

public static final java.lang.String defaultCommandClassName
The name of the default implementation class.
See Also:
Constant Field Values
Method Detail

setInfo

public void setInfo(java.lang.String info)
Sets information of the participant
Parameters:
info - a string of information for the participant

setMemberId

public void setMemberId(java.lang.Long memberId)
Sets member ID of the participant.
Parameters:
memberId - the member ID of the participant

setRole

public void setRole(java.lang.String role)
Sets the role type of the participant.
Parameters:
role - the type of the participant role

setTcId

public void setTcId(java.lang.Long tcId)
Sets ID of the term and condition to which the participant will be added
Parameters:
tcId - term condition ID

setTradingId

public void setTradingId(java.lang.Long tradingId)
Sets ID of the trading agreement to which the participant will be added
Parameters:
tradingId - the trading agreement ID

Feedback