adding all of botlist, initial add
[botlist.git] / openbotlist / src / org / spirit / bean / impl / BotListGroupLinks.java
blob36dbdec175968fbd278125d52dc29b0c4a0de57e
1 /**
2 * Berlin Brown
3 * Nov 9, 2006
4 */
6 package org.spirit.bean.impl;
8 import java.io.Serializable;
9 import java.util.List;
11 import org.spirit.bean.impl.base.BotListBeanBase;
13 /**
14 * This is class is used by botverse.
16 * @author Berlin Brown
20 public class BotListGroupLinks extends BotListBeanBase
21 implements Serializable {
23 /**
26 private static final long serialVersionUID = -1477332735655043652L;
27 private String urlDescription;
28 private String mainUrl;
29 private Long views;
30 private String keywords;
31 private Long groupId;
32 private String urlTitle;
33 private String fullName;
35 /**
36 * @return the groupId
38 public Long getGroupId() {
39 return groupId;
41 /**
42 * @param groupId the groupId to set
44 public void setGroupId(Long groupId) {
45 this.groupId = groupId;
47 /**
48 * @return the keywords
50 public String getKeywords() {
51 return keywords;
53 /**
54 * @param keywords the keywords to set
56 public void setKeywords(String keywords) {
57 this.keywords = keywords;
59 /**
60 * @return the mainUrl
62 public String getMainUrl() {
63 return mainUrl;
65 /**
66 * @param mainUrl the mainUrl to set
68 public void setMainUrl(String mainUrl) {
69 this.mainUrl = mainUrl;
71 /**
72 * @return the urlDescription
74 public String getUrlDescription() {
75 return urlDescription;
77 /**
78 * @param urlDescription the urlDescription to set
80 public void setUrlDescription(String urlDescription) {
81 this.urlDescription = urlDescription;
83 /**
84 * @return the urlTitle
86 public String getUrlTitle() {
87 return urlTitle;
89 /**
90 * @param urlTitle the urlTitle to set
92 public void setUrlTitle(String urlTitle) {
93 this.urlTitle = urlTitle;
95 /**
96 * @return the views
98 public Long getViews() {
99 return views;
102 * @param views the views to set
104 public void setViews(Long views) {
105 this.views = views;
108 * @return the fullName
110 public String getFullName() {
111 return fullName;
114 * @param fullName the fullName to set
116 public void setFullName(String fullName) {
117 this.fullName = fullName;