]> git.somenet.org - pub/jan/sbc.git/blob - src/main/java/at/ac/tuwien/sbc/valesriegler/common/AbstractAction.java
[XVSM] Some fixes for making sure that Cook only prepares normal pizzas when there...
[pub/jan/sbc.git] / src / main / java / at / ac / tuwien / sbc / valesriegler / common / AbstractAction.java
1 package at.ac.tuwien.sbc.valesriegler.common;
2
3 import java.io.Serializable;
4
5 import at.ac.tuwien.sbc.valesriegler.types.GroupData;
6
7 /**
8  * Abstract action that can be performed in the DS. In almost all cases the
9  * groupdata is relevant, it may be null in the few corner cases.
10  * 
11  * @author jan
12  * 
13  */
14 public abstract class AbstractAction implements Serializable {
15         private final GroupData groupdata;
16
17         public AbstractAction(GroupData groupdata) {
18                 this.groupdata = groupdata;
19         }
20
21         public GroupData getGroupdata() {
22                 return groupdata;
23         }
24 }