com.ibm.commerce.negotiation.beans
Interface AuctionListSmartDataBean

All Known Implementing Classes:
AuctionListBean

public interface AuctionListSmartDataBean

Method Summary
java.lang.String getAuctFlag()
Get Auction flag: 0 for unlocked 1 for locked
AuctionDataBean getAuction(int index)
Returns a specific auction from an auction list.
AuctionDataBean[] getAuctions()
Get a list of auctions
java.lang.String getAuctItem()
Get Item id.
java.lang.String[] getAuctMultipleStatus()
Get multiple auction status.
java.lang.String getAuctOwnerId()
Get Owner id
java.lang.String getAuctReferenceCode()
Get Reference code.
java.lang.String getAuctRuleId()
Get Bid control rule id.
java.lang.String getAuctStatus()
Get Auction status.
java.lang.String getAuctType() Get Auction type.

Method Detail

getAuctFlag

public java.lang.String getAuctFlag()
Get Auction flag:
  • 0 for unlocked
  • 1 for locked
Returns:
The auction flag.

getAuction

public AuctionDataBean getAuction(int index)
Returns a specific auction from an auction list.
Parameters:
index - The index of the auction to be returned.
Returns:
The auction from the list for the specified index.

getAuctions

public AuctionDataBean[] getAuctions()
Get a list of auctions
Returns:
The array of auction data beans.

getAuctItem

public java.lang.String getAuctItem()
Get Item id. Item id is also the catelog entry id.
Returns:
The item id.

getAuctMultipleStatus

public java.lang.String[] getAuctMultipleStatus()
Get multiple auction status. The possible auction status are:
  • F=Future
  • C=Current
  • R=Retracted(deleted)
  • SC=Settlement Closed
  • BC=Bidding Closed.
Returns:
The auction status array.

getAuctOwnerId

public java.lang.String getAuctOwnerId()
Get Owner id
Returns:
The owner id.

getAuctReferenceCode

public java.lang.String getAuctReferenceCode()
Get Reference code. Auction reference code is generated by the system.
Returns:
The auction reference code.

getAuctRuleId

public java.lang.String getAuctRuleId()
Get Bid control rule id.
Returns:
The bid control rule id.

getAuctStatus

public java.lang.String getAuctStatus()
Get Auction status. The possible status are:
  • F=Future
  • C=Current
  • R=Retracted(deleted)
  • SC=Settlement Closed
  • BC=Bidding Closed.
Returns:
The auction status.

getAuctType

public java.lang.String getAuctType()
Get Auction type.
Returns:
The auction type.

Feedback