Package org.jwall.web.audit

Examples of org.jwall.web.audit.AuditEventFactory


           
            String factoryClassName = System.getProperty( AuditEventFactory.AUDIT_EVENT_FACTORY_CLASS );
           
            if( factoryClassName != null ){
                Class<?> factory = Class.forName( factoryClassName );
                AuditEventFactory factoryClass = (AuditEventFactory) factory.newInstance();
                if( factoryClass != null ){
                    eventFactory = factoryClass;
                    //System.out.println( "Using event-factory class \"" + eventFactory.getClass().getName() + "\"" );
                }
            }
View Full Code Here

TOP

Related Classes of org.jwall.web.audit.AuditEventFactory

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.