adding all of botlist, initial add
[botlist.git] / openbotlist / src / org / spirit / form / BotListUserCommentsForm.java
blob78ecacd4a43f2fe405e7956277064ed0b749efe1
1 /**
2 * Berlin Brown
3 * Nov 9, 2006
4 */
6 package org.spirit.form;
8 import java.util.Calendar;
10 import org.spirit.bean.impl.BotListUserComments;
11 import org.spirit.form.base.BotListBaseForm;
13 /**
14 * This is class is used by botverse.
16 * @author Berlin Brown
19 public class BotListUserCommentsForm extends BotListBaseForm {
21 /**
24 private static final long serialVersionUID = -3369285765294416417L;
26 private String mainUrl;
27 private String zipcode;
28 private Long linkId;
29 private String email;
30 private Calendar createdOn;
31 private Long adlistId;
32 private Long forumId;
33 private String fullName;
34 private String keywords;
36 private String subject;
37 private String message;
38 private Long firstInput;
39 private Long secondInput;
40 private Long solution;
41 private Long userSolution;
42 private Long prevSolution;
43 private String roverVerify;
44 private BotListUserComments userComment;
46 /**
47 * @return the adlistId
49 public Long getAdlistId() {
50 return adlistId;
52 /**
53 * @param adlistId the adlistId to set
55 public void setAdlistId(Long adlistId) {
56 this.adlistId = adlistId;
58 /**
59 * @return the createdOn
61 public Calendar getCreatedOn() {
62 return createdOn;
64 /**
65 * @param createdOn the createdOn to set
67 public void setCreatedOn(Calendar createdOn) {
68 this.createdOn = createdOn;
70 /**
71 * @return the email
73 public String getEmail() {
74 return email;
76 /**
77 * @param email the email to set
79 public void setEmail(String email) {
80 this.email = email;
82 /**
83 * @return the firstInput
85 public Long getFirstInput() {
86 return firstInput;
88 /**
89 * @param firstInput the firstInput to set
91 public void setFirstInput(Long firstInput) {
92 this.firstInput = firstInput;
94 /**
95 * @return the fullName
97 public String getFullName() {
98 return fullName;
101 * @param fullName the fullName to set
103 public void setFullName(String fullName) {
104 this.fullName = fullName;
108 * @return the keywords
110 public String getKeywords() {
111 return keywords;
114 * @param keywords the keywords to set
116 public void setKeywords(String keywords) {
117 this.keywords = keywords;
120 * @return the linkId
122 public Long getLinkId() {
123 return linkId;
126 * @param linkId the linkId to set
128 public void setLinkId(Long linkId) {
129 this.linkId = linkId;
132 * @return the mainUrl
134 public String getMainUrl() {
135 return mainUrl;
138 * @param mainUrl the mainUrl to set
140 public void setMainUrl(String mainUrl) {
141 this.mainUrl = mainUrl;
144 * @return the prevSolution
146 public Long getPrevSolution() {
147 return prevSolution;
150 * @param prevSolution the prevSolution to set
152 public void setPrevSolution(Long prevSolution) {
153 this.prevSolution = prevSolution;
156 * @return the secondInput
158 public Long getSecondInput() {
159 return secondInput;
162 * @param secondInput the secondInput to set
164 public void setSecondInput(Long secondInput) {
165 this.secondInput = secondInput;
168 * @return the solution
170 public Long getSolution() {
171 return solution;
174 * @param solution the solution to set
176 public void setSolution(Long solution) {
177 this.solution = solution;
180 * @return the subject
182 public String getSubject() {
183 return subject;
186 * @param subject the subject to set
188 public void setSubject(String subject) {
189 this.subject = subject;
192 * @return the userSolution
194 public Long getUserSolution() {
195 return userSolution;
198 * @param userSolution the userSolution to set
200 public void setUserSolution(Long userSolution) {
201 this.userSolution = userSolution;
204 * @return the zipcode
206 public String getZipcode() {
207 return zipcode;
210 * @param zipcode the zipcode to set
212 public void setZipcode(String zipcode) {
213 this.zipcode = zipcode;
216 * @return the message
218 public String getMessage() {
219 return message;
222 * @param message the message to set
224 public void setMessage(String message) {
225 this.message = message;
228 * @return the forumId
230 public Long getForumId() {
231 return forumId;
234 * @param forumId the forumId to set
236 public void setForumId(Long forumId) {
237 this.forumId = forumId;
240 * @return the roverVerify
242 public String getRoverVerify() {
243 return roverVerify;
246 * @param roverVerify the roverVerify to set
248 public void setRoverVerify(String roverVerify) {
249 this.roverVerify = roverVerify;
252 * @return the userComment
254 public BotListUserComments getUserComment() {
255 return userComment;
258 * @param userComment the userComment to set
260 public void setUserComment(BotListUserComments userComment) {
261 this.userComment = userComment;