adding all of botlist, initial add
[botlist.git] / openbotlist / src / org / spirit / form / ext / BotListMapEntityLink.java
blob2188b7c37bc02ab6543a1dba7cb71ae398330ea5
1 /**
2 * Berlin Brown
3 * Copyright (c) 2006 - 2007, Newspiritcompany.com
5 * Apr 24, 2007
6 */
7 package org.spirit.form.ext;
9 import java.io.Serializable;
10 import java.util.Calendar;
11 import java.util.HashMap;
13 /**
14 * This is class is used by botverse.
15 * @author Berlin Brown
18 public class BotListMapEntityLink
19 extends HashMap implements Serializable {
21 /**
24 private static final long serialVersionUID = 1902859165498400016L;
26 private String viewName;
27 private String uniqueId;
28 private String userNameDisplay;
29 private Calendar createdOn;
31 private String operation;
32 private String ratingId;
34 /**
35 * @return the createdOn
37 public Calendar getCreatedOn() {
38 return createdOn;
40 /**
41 * @param createdOn the createdOn to set
43 public void setCreatedOn(Calendar createdOn) {
44 this.createdOn = createdOn;
46 /**
47 * @return the uniqueId
49 public String getUniqueId() {
50 return uniqueId;
52 /**
53 * @param uniqueId the uniqueId to set
55 public void setUniqueId(String uniqueId) {
56 this.uniqueId = uniqueId;
58 /**
59 * @return the userNameDisplay
61 public String getUserNameDisplay() {
62 return userNameDisplay;
64 /**
65 * @param userNameDisplay the userNameDisplay to set
67 public void setUserNameDisplay(String userNameDisplay) {
68 this.userNameDisplay = userNameDisplay;
70 /**
71 * @return the viewName
73 public String getViewName() {
74 return viewName;
76 /**
77 * @param viewName the viewName to set
79 public void setViewName(String viewName) {
80 this.viewName = viewName;
82 /**
83 * @return the operation
85 public String getOperation() {
86 return operation;
88 /**
89 * @param operation the operation to set
91 public void setOperation(String operation) {
92 this.operation = operation;
94 /**
95 * @return the ratingId
97 public String getRatingId() {
98 return ratingId;
101 * @param ratingId the ratingId to set
103 public void setRatingId(String ratingId) {
104 this.ratingId = ratingId;