public class AuctionDescription
extends java.lang.Object
| Modifier and Type | Field and Description | 
|---|---|
| protected long | roundtimeoutThe auction round timeout. | 
| protected long | starttimeThe auction starttime. | 
| protected java.lang.Object | topicThe auction content. | 
| Constructor and Description | 
|---|
| AuctionDescription()Create a new auction description. | 
| AuctionDescription(long starttime,
                  long roundtimeout,
                  java.lang.Object topic)Create a new auction description. | 
| Modifier and Type | Method and Description | 
|---|---|
| long | getRoundTimeout()Get the round timeout. | 
| long | getStarttime()Get the start time. | 
| java.lang.Object | getTopic()Get the auction topic. | 
| void | setRoundTimeout(long roundtimeout)Set the round timeout. | 
| void | setStarttime(long starttime)Set the start time. | 
| void | setTopic(java.lang.Object topic)Set the auction topic. | 
protected long starttime
protected long roundtimeout
protected java.lang.Object topic
public AuctionDescription()
public AuctionDescription(long starttime,
                          long roundtimeout,
                          java.lang.Object topic)
starttime - The start time.roundtimeout - The timeout of a single auction round.topic - The auction topic.public long getRoundTimeout()
public void setRoundTimeout(long roundtimeout)
roundtimeout - The round timeout to set.public long getStarttime()
public void setStarttime(long starttime)
starttime - The starttime to set.public java.lang.Object getTopic()
public void setTopic(java.lang.Object topic)
topic - The topic to set.