]> git.somenet.org - pub/jan/sbc.git/blob - src/main/java/at/ac/tuwien/sbc/valesriegler/types/OrderStatus.java
cook pizza orders and let the waiters to deliver them.
[pub/jan/sbc.git] / src / main / java / at / ac / tuwien / sbc / valesriegler / types / OrderStatus.java
1 package at.ac.tuwien.sbc.valesriegler.types;
2
3 import java.io.Serializable;
4
5 /**
6  * Enum denoting all the possible states an Order can have.
7  * 
8  * @author jan
9  * 
10  */
11 public enum OrderStatus implements Serializable {
12         NEW, ORDERED, DELIVERY_PENDING, DELIVERED, PAID
13 }