]> git.somenet.org - pub/jan/sbc.git/blob - src/main/java/at/ac/tuwien/sbc/valesriegler/group/actions/TableResponse.java
großer Brocken an GruppenGui-Änderungen kombiniert mit ersten Teil des Bestellworkflows.
[pub/jan/sbc.git] / src / main / java / at / ac / tuwien / sbc / valesriegler / group / actions / TableResponse.java
1 package at.ac.tuwien.sbc.valesriegler.group.actions;
2
3 import java.io.Serializable;
4
5 import at.ac.tuwien.sbc.valesriegler.group.GroupData;
6 import at.ac.tuwien.sbc.valesriegler.types.Table;
7
8 public class TableResponse extends AbstractAction implements Serializable {
9         private final Table table;
10         private final int waiterId;
11
12         public TableResponse(GroupData groupdata, Table table, int waiterId) {
13                 super(groupdata);
14                 this.table = table;
15                 this.waiterId = waiterId;
16         }
17
18         public Table getTable() {
19                 return table;
20         }
21
22         public int getWaiterId() {
23                 return waiterId;
24         }
25
26 }