- change target platform - rap-3.0.0-20140424
[Tadpole.git] / com.hangum.tadpole.commons.sql / src / com / hangum / tadpole / engine / security / AuditManager.java
blob67b4709f2bbdb8c426bd08c51fae1fbbe385ec0a
1 /*******************************************************************************
2 * Copyright (c) 2012 - 2015 hangum.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser Public License v2.1
5 * which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
7 *
8 * Contributors:
9 * hangum - initial API and implementation
10 ******************************************************************************/
11 package com.hangum.tadpole.engine.security;
13 import org.apache.log4j.Logger;
15 /**
16 * audit manager
18 * @author hangum
19 * @version 1.6.1
20 * @since 2015. 4. 2.
23 public class AuditManager {
24 private static final Logger logger = Logger.getLogger(AuditManager.class);
25 private static AuditManager instance = null;
27 /**
30 private AuditManager() {}
32 public static AuditManager getInstance() {
33 if(instance == null) {
34 instance = new AuditManager();
37 return instance;