Defines the interface used by task commands that check bids for compliance with auction rules.
Field Summary | |
---|---|
static java.lang.String |
COPYRIGHT Copyright statement. |
static java.lang.String |
defaultCommandClassName The default implementation class name. |
static java.lang.String |
NAME The full class name for this interface file. |
Method Summary | |
---|---|
java.lang.String |
getBidQuantity() Gets the bid quantity. |
java.lang.String |
getBidValue() Gets the bid value. |
java.lang.String |
getErrorTaskName() Gets the error task name; if null, returns the default error task name. |
java.lang.String |
getLowestWinningBid() Gets the lowest winning bid. |
boolean |
isBidOkay() Returns the status of bid-control compliance test. |
void |
setAuction(AuctionAccessBean auction) Sets the auction access bean. |
void |
setBidQuantity(java.lang.String newBidQuantity) Sets the bid quantity. |
void |
setBidValue(java.lang.String newBidValue) Sets the bid value. |
void |
setErrorTaskName(java.lang.String newErrorTaskName) Sets the error task name. |
void |
setLowestWinningBid(java.lang.String newLowestWinningBid)
Sets the lowest winning bid. |
Field Detail |
---|
public static final java.lang.String COPYRIGHT
public static final java.lang.String NAME
public static final java.lang.String defaultCommandClassName
Method Detail |
---|
public java.lang.String getBidQuantity()
public java.lang.String getBidValue()
public java.lang.String getErrorTaskName()
public java.lang.String getLowestWinningBid()
public boolean isBidOkay()
public void setAuction(AuctionAccessBean auction) throws ECApplicationException
auction
- AuctionAcessBean
ECApplicationException
- if any problems are
encountered.public void setBidQuantity(java.lang.String newBidQuantity) throws ECApplicationException
newBidQuantity
- The bid quantity.
ECApplicationException
- if any problems are
encountered.public void setBidValue(java.lang.String newBidValue) throws ECApplicationException
newBidValue
- The bid value.
ECApplicationException
- if any problems are
encountered.public void setErrorTaskName(java.lang.String newErrorTaskName)
newErrorTaskName
- The error task name.public void setLowestWinningBid(java.lang.String newLowestWinningBid)
newLowestWinningBid
- The lowest winning
bid.