Package org.drools.workbench.models.commons.shared.auditlog

Examples of org.drools.workbench.models.commons.shared.auditlog.DefaultAuditLog


     * Retrieve, or lazily instantiate a new, AuditLog.
     * @return
     */
    public AuditLog getAuditLog() {
        if ( this.auditLog == null ) {
            this.auditLog = new DefaultAuditLog( new DecisionTableAuditLogFilter() );
        }
        return this.auditLog;
    }
View Full Code Here

TOP

Related Classes of org.drools.workbench.models.commons.shared.auditlog.DefaultAuditLog

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.