adding all of botlist, initial add
[botlist.git] / openbotlist / src / org / spirit / form / BotListGroupControlForm.java
blob51bc3c962ac7ffda353a47c759e05a27b3f162ce
1 /**
2 * Berlin Brown
3 * Nov 9, 2006
4 */
6 package org.spirit.form;
8 import org.spirit.form.base.BotListBaseForm;
10 /**
11 * This is class is used by botverse.
13 * @author Berlin Brown
17 public class BotListGroupControlForm extends BotListBaseForm {
19 /**
22 private static final long serialVersionUID = 6668365748849957506L;
23 private String groupUid;
24 private String shortDescr;
25 private String longDescr;
26 private String groupName;
27 /**
28 * @return the groupName
30 public String getGroupName() {
31 return groupName;
33 /**
34 * @param groupName the groupName to set
36 public void setGroupName(String groupName) {
37 this.groupName = groupName;
39 /**
40 * @return the groupUid
42 public String getGroupUid() {
43 return groupUid;
45 /**
46 * @param groupUid the groupUid to set
48 public void setGroupUid(String groupUid) {
49 this.groupUid = groupUid;
51 /**
52 * @return the longDescr
54 public String getLongDescr() {
55 return longDescr;
57 /**
58 * @param longDescr the longDescr to set
60 public void setLongDescr(String longDescr) {
61 this.longDescr = longDescr;
63 /**
64 * @return the shortDescr
66 public String getShortDescr() {
67 return shortDescr;
69 /**
70 * @param shortDescr the shortDescr to set
72 public void setShortDescr(String shortDescr) {
73 this.shortDescr = shortDescr;