1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.apache.jetspeed.audit.impl;
18
19 import java.sql.Timestamp;
20
21 public class ActivityBean
22 {
23 private String activity;
24 private String category;
25 private String admin;
26 private String userName;
27 private Timestamp timestamp;
28 private String ipAddress;
29 private String name;
30 private String beforeValue;
31 private String afterValue;
32 private String description;
33
34 public String getActivity()
35 {
36 return activity;
37 }
38
39 public void setActivity(String activity)
40 {
41 this.activity = activity;
42 }
43
44 public String getAdmin()
45 {
46 return admin;
47 }
48
49 public void setAdmin(String admin)
50 {
51 this.admin = admin;
52 }
53
54 public String getCategory()
55 {
56 return category;
57 }
58
59 public void setCategory(String category)
60 {
61 this.category = category;
62 }
63
64 public String getDescription()
65 {
66 return description;
67 }
68
69 public void setDescription(String description)
70 {
71 this.description = description;
72 }
73
74 public String getIpAddress()
75 {
76 return ipAddress;
77 }
78
79 public void setIpAddress(String ipAddress)
80 {
81 this.ipAddress = ipAddress;
82 }
83
84 public String getName()
85 {
86 return name;
87 }
88
89 public void setName(String name)
90 {
91 this.name = name;
92 }
93
94 public Timestamp getTimestamp()
95 {
96 return timestamp;
97 }
98
99 public void setTimestamp(Timestamp timestamp)
100 {
101 this.timestamp = timestamp;
102 }
103
104 public String getUserName()
105 {
106 return userName;
107 }
108
109 public void setUserName(String userName)
110 {
111 this.userName = userName;
112 }
113
114
115 public String getAfterValue()
116 {
117 return afterValue;
118 }
119
120
121 public void setAfterValue(String afterValue)
122 {
123 this.afterValue = afterValue;
124 }
125
126
127 public String getBeforeValue()
128 {
129 return beforeValue;
130 }
131
132
133 public void setBeforeValue(String beforeValue)
134 {
135 this.beforeValue = beforeValue;
136 }
137
138 }