source: src/main/java/bargainingchips/players/StatusMessage.java@ 324

Last change on this file since 324 was 316, checked in by Tim Baarslag, 5 years ago

new packages complete

File size: 528 bytes
RevLine 
[316]1package bargainingchips.players;
[315]2
[316]3import bargainingchips.Bundle;
[315]4
5/**
6 * A message from the buying agents to the Coordinator
7 * Should be immutable
8 */
9public class StatusMessage
10{
11 private final StatusMessageType type;
12 private final Bundle agreement;
13
14 public StatusMessage(Bundle agreement, StatusMessageType type)
15 {
16 this.agreement = agreement;
17 this.type = type;
18 }
19
20 public Bundle getAgreement()
21 {
22 return agreement;
23 }
24
25 public StatusMessageType getType()
26 {
27 return type;
28 }
29
30}
Note: See TracBrowser for help on using the repository browser.