1 package org.apache.archiva.redback.struts2.action;
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
12 * http://www.apache.org/licenses/LICENSE-2.0
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
22 import org.slf4j.Logger;
23 import org.slf4j.LoggerFactory;
26 public class AuditEvent
28 private Logger logger = LoggerFactory.getLogger( AuditEvent.class.getName() );
30 private final String action;
32 private String affectedUser;
36 private String currentUser;
38 public AuditEvent( String action )
43 public void setRole( String role )
48 public String getRole()
53 public void setAffectedUser( String affectedUser )
55 this.affectedUser = affectedUser;
58 public String getAffectedUser()
63 public void setCurrentUser( String currentUser )
65 this.currentUser = currentUser;
68 public String getCurrentUser()
75 // TODO: it would be better to push this into the login interceptor so it is always set consistently
76 // (same for IP address)
77 if ( currentUser != null )
79 MDC.put( "redback.currentUser", currentUser );
82 if ( affectedUser != null )
86 logger.info( action, affectedUser, role );
90 logger.info( action, affectedUser );