com.ibm.commerce.rfq.commands
Class RFQAttachmentDescUpdateCmdImpl

java.lang.Object
  CacheableCommandImpl
      com.ibm.commerce.command.AbstractECTargetableCommand
          com.ibm.commerce.command.ControllerCommandImpl
              com.ibm.commerce.rfq.commands.RFQAttachmentDescUpdateCmdImpl
All Implemented Interfaces:
AccCommand, ControllerCommand, ECCommand, ECTargetableCommand, Protectable, RFQAttachmentDescUpdateCmd

public class RFQAttachmentDescUpdateCmdImpl
extends ControllerCommandImpl
implements RFQAttachmentDescUpdateCmd

Implementation class for updating attachment descriptions in an RFQ.

This is the default implementation of the RFQAttachmentDescUpdateCmd Command. This command uses the following AccessBeans:

See Also:
Serialized Form

Field Summary
static java.lang.String COPYRIGHT
COPYRIGHT
Fields inherited from class com.ibm.commerce.command.ControllerCommandImpl
requestProperties, responseProperties, retriable, viewReqProperties
Fields inherited from class com.ibm.commerce.command.AbstractECTargetableCommand
commandContext
Fields inherited from interface com.ibm.commerce.rfq.commands.RFQAttachmentDescUpdateCmd
defaultCommandClassName, NAME
Constructor Summary
RFQAttachmentDescUpdateCmdImpl()
Method Summary
AccessVector getResources() Gets the access vector accessed by this command.
java.lang.Long getRFQId()
Returns the RFQ Id.
void performExecute()
Delete the attachment from the RFQ
void reset()
Reset the command
void setRequestProperties(TypedProperty requestProperties) Retrieves the identifier of the RFQ and Attachment that are to be deleted. The WebController calls the setRequestProperties method before invoking the execute method in this command.
void setRFQId(java.lang.Long newRFQ)
Sets the value of the member variable, rfqId, to the incoming value.
void validateParameters()
Checks for a valid RFQ and attachment identifier.
Methods inherited from class com.ibm.commerce.command.ControllerCommandImpl
checkPermission, fulfills, getForUserId, getGeneric, getOwner, getRequestProperties, getResolvedRequestProperties, getResourceOwners, getResponseProperties, getRetriable, getViewInputProperties, isGeneric, isRetriable, mergeProperties, setForUserId, setGeneric, setOwner, setResponseProperties, setRetriable, setViewInputProperties
Methods inherited from class com.ibm.commerce.command.AbstractECTargetableCommand
accessControlCheck, checkIsAllowed, checkParameters, checkResourcePermission, createCommandExecutionEvent, execute, finalize, getAccCheck, getCommandContext, getCommandIfName, getCommandName, getCommandStoreId, getDefaultProperties, getStoreId, getUser, getUserId, isReadyToCallExecute, setAccCheck, setCommandContext, setCommandIfName, setCommandStoreId, setDefaultProperties
Methods inherited from class java.lang.Object
clone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.ibm.commerce.command.ControllerCommand
checkPermission, execute, getGeneric, getRequestProperties, getResolvedRequestProperties, getResponseProperties, getRetriable, getViewInputProperties, isGeneric, isRetriable, mergeProperties, setGeneric, 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, getStoreId, getUser, getUserId, setCommandContext, setCommandIfName, setCommandStoreId, setDefaultProperties
Methods inherited from interface com.ibm.commerce.security.Protectable
fulfills, getOwner
Field Detail

COPYRIGHT

public static final java.lang.String COPYRIGHT
COPYRIGHT
See Also:
Constant Field Values
Constructor Detail

RFQAttachmentDescUpdateCmdImpl

public RFQAttachmentDescUpdateCmdImpl()
Method Detail

reset

public void reset()
Reset the command
Overrides:
reset in class AbstractECTargetableCommand

getResources

public AccessVector getResources()
                          throws ECException
Gets the access vector accessed by this command.
Specified by:
getResources in interface ECCommand
Overrides:
getResources in class AbstractECTargetableCommand
Returns:
AccessVector - a vector of resource action pairs
Throws:
ECException
See Also:
ECCommand.getResources()

getRFQId

public java.lang.Long getRFQId()
Returns the RFQ Id.
Returns:
The RFQ identifier.

performExecute

public void performExecute()
                    throws ECException
Delete the attachment from the RFQ

Behaviour


setRequestProperties

public void setRequestProperties(TypedProperty requestProperties)
                          throws ECException
Retrieves the identifier of the RFQ and Attachment that are to be deleted.
The WebController calls the setRequestProperties method before invoking the execute method in this command.
Specified by:
setRequestProperties in interface ControllerCommand
Overrides:
setRequestProperties in class ControllerCommandImpl
Parameters:
requestProperties - com.ibm.commerce.datatype.TypedProperty
Throws:
ECException
See Also:
ControllerCmd#setRequestProperties(TypedProperty)

setRFQId

public void setRFQId(java.lang.Long newRFQ)
Sets the value of the member variable, rfqId, to the incoming value.
Parameters:
newRFQ - The incoming value for an RFQ identifier.

validateParameters

public void validateParameters()
                        throws ECException
Checks for a valid RFQ and attachment identifier. This method does the following:
  1. Checks if a RFQ Id has been specified.
  2. Checks if the specified RFQ Id is valid.
  3. Checks if a Attachment Id has been specified.
  4. Checks if the specified attachment Id is valid.
Specified by:
validateParameters in interface ECCommand
Overrides:
validateParameters in class AbstractECTargetableCommand
Throws:
ECException
See Also:
ECCommand.validateParameters()

Feedback