001: /*
002: * Licensed to the Apache Software Foundation (ASF) under one or more
003: * contributor license agreements. See the NOTICE file distributed with
004: * this work for additional information regarding copyright ownership.
005: * The ASF licenses this file to You under the Apache License, Version 2.0
006: * (the "License"); you may not use this file except in compliance with
007: * the License. You may obtain a copy of the License at
008: *
009: * http://www.apache.org/licenses/LICENSE-2.0
010: *
011: * Unless required by applicable law or agreed to in writing, software
012: * distributed under the License is distributed on an "AS IS" BASIS,
013: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014: * See the License for the specific language governing permissions and
015: * limitations under the License.
016: */
017: package org.apache.jetspeed.audit.impl;
018:
019: import java.sql.Timestamp;
020:
021: public class ActivityBean {
022: private String activity;
023: private String category;
024: private String admin;
025: private String userName;
026: private Timestamp timestamp;
027: private String ipAddress;
028: private String name;
029: private String beforeValue;
030: private String afterValue;
031: private String description;
032:
033: public String getActivity() {
034: return activity;
035: }
036:
037: public void setActivity(String activity) {
038: this .activity = activity;
039: }
040:
041: public String getAdmin() {
042: return admin;
043: }
044:
045: public void setAdmin(String admin) {
046: this .admin = admin;
047: }
048:
049: public String getCategory() {
050: return category;
051: }
052:
053: public void setCategory(String category) {
054: this .category = category;
055: }
056:
057: public String getDescription() {
058: return description;
059: }
060:
061: public void setDescription(String description) {
062: this .description = description;
063: }
064:
065: public String getIpAddress() {
066: return ipAddress;
067: }
068:
069: public void setIpAddress(String ipAddress) {
070: this .ipAddress = ipAddress;
071: }
072:
073: public String getName() {
074: return name;
075: }
076:
077: public void setName(String name) {
078: this .name = name;
079: }
080:
081: public Timestamp getTimestamp() {
082: return timestamp;
083: }
084:
085: public void setTimestamp(Timestamp timestamp) {
086: this .timestamp = timestamp;
087: }
088:
089: public String getUserName() {
090: return userName;
091: }
092:
093: public void setUserName(String userName) {
094: this .userName = userName;
095: }
096:
097: public String getAfterValue() {
098: return afterValue;
099: }
100:
101: public void setAfterValue(String afterValue) {
102: this .afterValue = afterValue;
103: }
104:
105: public String getBeforeValue() {
106: return beforeValue;
107: }
108:
109: public void setBeforeValue(String beforeValue) {
110: this.beforeValue = beforeValue;
111: }
112:
113: }
|