]> git.somenet.org - pub/jan/sbc.git/blob - src/main/java/at/ac/tuwien/sbc/valesriegler/types/PizzaOrderStatus.java
added some not really helpful class descriptions + removed types that got duplicated...
[pub/jan/sbc.git] / src / main / java / at / ac / tuwien / sbc / valesriegler / types / PizzaOrderStatus.java
1 package at.ac.tuwien.sbc.valesriegler.types;
2
3 import java.io.Serializable;
4
5 /**
6  * Enum denoting all the possible states a PizzaOrder can be in.
7  * 
8  * @author jan
9  * 
10  */
11 public enum PizzaOrderStatus implements Serializable {
12         NEW, ORDERED, IN_PREPARATION, DONE
13 }