adding all of botlist, initial add
[botlist.git] / openbotlist / src / org / spirit / apps / system / SystemFeedItemsType.java
blob8acf4ab0b34135ea90f2786312e099046af3705d
1 /**
2 * Berlin Brown
3 * Nov 9, 2006
4 */
6 package org.spirit.apps.system;
8 import java.io.Serializable;
10 import org.spirit.bean.impl.base.BotListEntity;
12 /**
13 * This is class is used by botverse.
15 * Fields included from the Entity base class.
16 * --------------------------
17 * String generatedUniqueId;
18 * Calendar createdOn;
19 * Calendar updatedOn;
20 * Long id;
21 * String mainUrl;
22 * String keywords;
23 * String urlDescription;
24 * String urlTitle;
26 * @author Berlin Brown
29 public class SystemFeedItemsType extends BotListEntity implements Serializable {
31 /**
34 private static final long serialVersionUID = -2800491702537719907L;
36 private String urlSource;
37 private String enumProcType;
39 private final String defaultQuerySQL = "insert into system_feed_items (main_url,url_title,url_description,url_source,created_on,hostname) values(?,?,?,?,?,?)";
41 public String toString() {
42 StringBuffer buf = new StringBuffer();
43 buf.append("#SystemFeedItems");
44 return buf.toString();
47 public String getUrlSource() {
48 return urlSource;
51 public void setUrlSource(String urlSource) {
52 this.urlSource = urlSource;
55 public String getEnumProcType() {
56 return enumProcType;
59 public void setEnumProcType(String enumProcType) {
60 this.enumProcType = enumProcType;
63 public String getDefaultQuerySQL() {
64 return defaultQuerySQL;