]> git.somenet.org - pub/jan/sbc.git/blob - src/main/java/at/ac/tuwien/sbc/valesriegler/group/actions/OrderResponse.java
implemented Workflow to "ordered", where the cook has pizzas to cook and another...
[pub/jan/sbc.git] / src / main / java / at / ac / tuwien / sbc / valesriegler / group / actions / OrderResponse.java
1 package at.ac.tuwien.sbc.valesriegler.group.actions;
2
3 import java.io.Serializable;
4
5 import at.ac.tuwien.sbc.valesriegler.types.GroupData;
6
7 public class OrderResponse extends AbstractAction implements Serializable {
8         private final int waiterId;
9
10         public OrderResponse(GroupData groupdata, int waiterId) {
11                 super(groupdata);
12                 this.waiterId = waiterId;
13         }
14
15         public int getWaiterId() {
16                 return waiterId;
17         }
18
19 }