-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConstants.java
More file actions
24 lines (21 loc) · 1002 Bytes
/
Copy pathConstants.java
File metadata and controls
24 lines (21 loc) · 1002 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//package AuctionHouse;
public class Constants
{
// bidder to auctioneer commands
public static final String connect = "connect";
public static final String i_am_interested = "i_am_interested";
public static final String list_description = "list_description";
public static final String list_high_bid = "list_high_bid";
public static final String my_bid = "my_bid";
public static final String quit = "quit";
// auctioneer to bidder commands
public static final String start_bidding = "start_bidding";
public static final String new_high_bid = "new_high_bid";
public static final String stop_bidding = "stop_bidding";
public static final String duplicate_name = "duplicate_name";
public static final String bid_item = "bid_item";
public static final String auction_complete = "auction_complete";
public static final String simple_message = "simple_message";
// other constants
public static final String no_holder = "no_holder";
}