com.ibm.commerce.rfq.commands
Interface CopyRFQAttachmentCmd

All Superinterfaces:
TaskCommand
All Known Implementing Classes:
CopyRFQAttachmentCmdImpl

public interface CopyRFQAttachmentCmd
extends TaskCommand

Copies RFQ attachments.


Field Summary
static java.lang.String COPYRIGHT
COPYTRIGHT
static java.lang.String defaultCommandClassName
Default implementation class name
static java.lang.String NAME
Task command name
Method Summary
java.lang.Long getNewRFQId()
Returns the RFQ id of the new copy.
java.lang.Long getSourceRFQId()
Returns the source RFQ unique id used for the copy.
void setNewRFQId(java.lang.Long newRFQId)
Sets the unique id for the new RFQ
void setSourceRFQId(java.lang.Long sourceRfqId) Sets the source of RFQ id to copy from.
Field Detail

COPYRIGHT

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

NAME

public static final java.lang.String NAME
Task command name
See Also:
Constant Field Values

defaultCommandClassName

public static final java.lang.String defaultCommandClassName
Default implementation class name
See Also:
Constant Field Values
Method Detail

getNewRFQId

public java.lang.Long getNewRFQId()
Returns the RFQ id of the new copy. Note that the RFQ id is only available after the command is succesfully executed.
Returns:
The Long RFQ id value of the new copy.

setNewRFQId

public void setNewRFQId(java.lang.Long newRFQId)
Sets the unique id for the new RFQ

getSourceRFQId

public java.lang.Long getSourceRFQId()
Returns the source RFQ unique id used for the copy.
Returns:
The Long unique source RFQ id value used to copy from.

setSourceRFQId

public void setSourceRFQId(java.lang.Long sourceRfqId)
Sets the source of RFQ id to copy from.

Feedback