adding all of botlist, initial add
[botlist.git] / openbotlist / src / org / spirit / bean / impl / BotListProfileSettings.java
blobbe1caa5e136438ff5c00fa6b7a7988c8419eb688
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
19 public class BotListProfileSettings extends BotListBeanBase
20 implements Serializable {
22 /**
25 private static final long serialVersionUID = 2609558699187914908L;
27 private String linkColor;
28 private Long userId;
29 /**
30 * @return the linkColor
32 public String getLinkColor() {
33 return linkColor;
35 /**
36 * @param linkColor the linkColor to set
38 public void setLinkColor(String linkColor) {
39 this.linkColor = linkColor;
41 /**
42 * @return the userId
44 public Long getUserId() {
45 return userId;
47 /**
48 * @param userId the userId to set
50 public void setUserId(Long userId) {
51 this.userId = userId;