]> git.somenet.org - pub/jan/sbc.git/blob - src/main/java/at/ac/tuwien/sbc/valesriegler/group/actions/OrderRequest.java
fixed some synchronisation problems in jms.
[pub/jan/sbc.git] / src / main / java / at / ac / tuwien / sbc / valesriegler / group / actions / OrderRequest.java
1 package at.ac.tuwien.sbc.valesriegler.group.actions;
2
3 import java.io.Serializable;
4
5 import at.ac.tuwien.sbc.valesriegler.common.AbstractAction;
6 import at.ac.tuwien.sbc.valesriegler.types.GroupData;
7
8 /**
9  * Indicate the interest to order pizzas
10  * 
11  * @author jan
12  * 
13  */
14 public class OrderRequest extends AbstractAction implements Serializable {
15         public OrderRequest(GroupData groupdata) {
16                 super(groupdata);
17         }
18
19         @Override
20         public String toString() {
21                 return "OrderRequest [getGroupdata()=" + getGroupdata() + "]";
22         }
23
24 }