View Javadoc

1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one or more
3    * contributor license agreements.  See the NOTICE file distributed with
4    * this work for additional information regarding copyright ownership.
5    * The ASF licenses this file to You under the Apache License, Version 2.0
6    * (the "License"); you may not use this file except in compliance with
7    * the License.  You may obtain a copy of the License at
8    * 
9    *      http://www.apache.org/licenses/LICENSE-2.0
10   * 
11   * Unless required by applicable law or agreed to in writing, software
12   * distributed under the License is distributed on an "AS IS" BASIS,
13   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   * See the License for the specific language governing permissions and
15   * limitations under the License.
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 }