KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > dotmarketing > portlets > user > struts > UserCommentsForm


1 package com.dotmarketing.portlets.user.struts;
2
3 import java.sql.Date JavaDoc;
4
5 import org.apache.struts.validator.ValidatorForm;
6
7 public class UserCommentsForm extends ValidatorForm
8 {
9     private long inode;
10     private long userProxy;
11     private Date JavaDoc date;
12     private String JavaDoc userComment;
13     private String JavaDoc method;
14     private String JavaDoc subject;
15     private String JavaDoc comment;
16     private String JavaDoc commentUserId;
17     private String JavaDoc typeComment;
18
19     public String JavaDoc getComment() {
20         return comment;
21     }
22     public void setComment(String JavaDoc comment) {
23         this.comment = comment;
24     }
25     public Date JavaDoc getDate() {
26         return date;
27     }
28     public void setDate(Date JavaDoc date) {
29         this.date = date;
30     }
31     public long getInode() {
32         return inode;
33     }
34     public void setInode(long inode) {
35         this.inode = inode;
36     }
37     public String JavaDoc getMethod() {
38         return method;
39     }
40     public void setMethod(String JavaDoc method) {
41         this.method = method;
42     }
43     public String JavaDoc getSubject() {
44         return subject;
45     }
46     public void setSubject(String JavaDoc subject) {
47         this.subject = subject;
48     }
49     public String JavaDoc getTypeComment() {
50         return typeComment;
51     }
52     public void setTypeComment(String JavaDoc typeComment) {
53         this.typeComment = typeComment;
54     }
55     public String JavaDoc getUserComment() {
56         return userComment;
57     }
58     public void setUserComment(String JavaDoc userComment) {
59         this.userComment = userComment;
60     }
61     public long getUserProxy() {
62         return userProxy;
63     }
64     public void setUserProxy(long userProxy) {
65         this.userProxy = userProxy;
66     }
67     /**
68      * @return Returns the commentUserId.
69      */

70     public String JavaDoc getCommentUserId() {
71         return commentUserId;
72     }
73     /**
74      * @param commentUserId The commentUserId to set.
75      */

76     public void setCommentUserId(String JavaDoc commentUserId) {
77         this.commentUserId = commentUserId;
78     }
79 }
80
Popular Tags