Hopefully storing all waiters that took care of a Group.
[pub/jan/sbc.git] / src / main / java / at / ac / tuwien / sbc / valesriegler / DEP_GroupDataMin.java
1 package at.ac.tuwien.sbc.valesriegler;
2
3 import java.io.Serializable;
4
5 /**
6  * A group bean which only has an id and a size.
7  * 
8  * @author Gregor Riegler <gregor DOT riegler AT gmail DOT com>
9  */
10 @Deprecated
11 public class DEP_GroupDataMin implements Serializable {
12         private int id;
13         private int size;
14
15         public int getId() {
16                 return id;
17         }
18
19         public void setId(int id) {
20                 this.id = id;
21         }
22
23         public int getSize() {
24                 return size;
25         }
26
27         public void setSize(int size) {
28                 this.size = size;
29         }
30 }