]> source.dussan.org Git - archiva.git/blob
b56af8cc3fae0f47ac34326f0e02818a040dbaee
[archiva.git] /
1 package org.apache.maven.archiva.repository.audit;
2
3 /*
4  * Licensed to the Apache Software Foundation (ASF) under one
5  * or more contributor license agreements.  See the NOTICE file
6  * distributed with this work for additional information
7  * regarding copyright ownership.  The ASF licenses this file
8  * to you under the Apache License, Version 2.0 (the
9  * "License"); you may not use this file except in compliance
10  * with the License.  You may obtain a copy of the License at
11  *
12  *  http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing,
15  * software distributed under the License is distributed on an
16  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17  * KIND, either express or implied.  See the License for the
18  * specific language governing permissions and limitations
19  * under the License.
20  */
21
22 /**
23  * AuditEvent 
24  *
25  * @author <a href="mailto:joakime@apache.org">Joakim Erdfelt</a>
26  * @version $Id$
27  */
28 public class AuditEvent
29 {
30     public static final String CREATE_DIR = "Created Directory";
31
32     public static final String CREATE_FILE = "Created File";
33
34     public static final String REMOVE_DIR = "Removed Directory";
35
36     public static final String REMOVE_FILE = "Removed File";
37
38     public static final String MODIFY_FILE = "Modify File";
39     
40     public static final String UPLOAD_FILE = "Uploaded File";
41     
42     private String repositoryId;
43
44     private String userId;
45     
46     private String remoteIP;
47
48     private String resource;
49
50     private String action;
51
52     public AuditEvent()
53     {
54         /* do nothing */
55     }
56
57     public AuditEvent( String repoId, String user, String resource, String action )
58     {
59         this.repositoryId = repoId;
60         this.userId = user;
61         this.resource = resource;
62         this.action = action;
63     }
64
65     public String getRepositoryId()
66     {
67         return repositoryId;
68     }
69
70     public void setRepositoryId( String repositoryId )
71     {
72         this.repositoryId = repositoryId;
73     }
74
75     public String getUserId()
76     {
77         return userId;
78     }
79
80     public void setUserId( String userId )
81     {
82         this.userId = userId;
83     }
84
85     public String getResource()
86     {
87         return resource;
88     }
89
90     public void setResource( String resource )
91     {
92         this.resource = resource;
93     }
94
95     public String getAction()
96     {
97         return action;
98     }
99
100     public void setAction( String action )
101     {
102         this.action = action;
103     }
104
105     public String getRemoteIP()
106     {
107         return remoteIP;
108     }
109
110     public void setRemoteIP( String remoteIP )
111     {
112         this.remoteIP = remoteIP;
113     }
114 }