Package net.webpasswordsafe.common.model

Examples of net.webpasswordsafe.common.model.AuditLog


    @Override
    @Transactional(propagation=Propagation.REQUIRES_NEW)
    public void log(Date date, String user, String ip, String action, String target, boolean status, String message)
    {
        AuditLog auditLog = new AuditLog(date, user, ip, action, target, status, message);
        auditLogDAO.makePersistent(auditLog);
    }
View Full Code Here

TOP

Related Classes of net.webpasswordsafe.common.model.AuditLog

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.