]> git.somenet.org - pub/jan/sbc.git/blob - src/main/java/at/ac/tuwien/sbc/valesriegler/DEP_Table.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 / DEP_Table.java
1 package at.ac.tuwien.sbc.valesriegler;
2
3 import java.io.Serializable;
4
5 @Deprecated
6 public class DEP_Table implements Serializable {
7
8         private int id;
9         private TableStatus status;
10         private int groupId;
11
12         public int getId() {
13                 return id;
14         }
15
16         public void setId(int id) {
17                 this.id = id;
18         }
19
20         public TableStatus getStatus() {
21                 return status;
22         }
23
24         public void setStatus(TableStatus status) {
25                 this.status = status;
26         }
27
28         public int getGroupId() {
29                 return groupId;
30         }
31
32         public void setGroupId(int groupId) {
33                 this.groupId = groupId;
34         }
35
36         public enum TableStatus {
37                 FREE, OCCUPIED;
38         }
39 }