adding all of botlist, initial add
[botlist.git] / openbotlist / src / org / spirit / bean / impl / BotListGroupControl.java
blobacf6cdf6196303705f569da98179e13c71f12d08
1 /**
2 * Berlin Brown
3 * Nov 9, 2006
4 */
6 package org.spirit.bean.impl;
8 import java.io.Serializable;
10 import org.spirit.bean.impl.base.BotListBeanBase;
12 /**
13 * This is class is used by botverse.
15 * @author Berlin Brown
18 public class BotListGroupControl extends BotListBeanBase implements Serializable {
20 /**
23 private static final long serialVersionUID = -6892504448534280552L;
24 private String groupUid;
25 private String shortDescr;
26 private String longDescr;
27 private String groupName;
28 /**
29 * @return the groupName
31 public String getGroupName() {
32 return groupName;
34 /**
35 * @param groupName the groupName to set
37 public void setGroupName(String groupName) {
38 this.groupName = groupName;
40 /**
41 * @return the groupUid
43 public String getGroupUid() {
44 return groupUid;
46 /**
47 * @param groupUid the groupUid to set
49 public void setGroupUid(String groupUid) {
50 this.groupUid = groupUid;
52 /**
53 * @return the longDescr
55 public String getLongDescr() {
56 return longDescr;
58 /**
59 * @param longDescr the longDescr to set
61 public void setLongDescr(String longDescr) {
62 this.longDescr = longDescr;
64 /**
65 * @return the shortDescr
67 public String getShortDescr() {
68 return shortDescr;
70 /**
71 * @param shortDescr the shortDescr to set
73 public void setShortDescr(String shortDescr) {
74 this.shortDescr = shortDescr;