Package ch.qos.logback.audit.persistent

Examples of ch.qos.logback.audit.persistent.SQLServerAEShaper


    String rdbmsDialect = servletContext
        .getInitParameter(AuditServerConstants.RDBMS_DIALECT_INIT_PARAM);
    if (AuditServerConstants.SQLSERVER_2005_DIALECT_VALUE
        .equalsIgnoreCase(rdbmsDialect)) {
      logger.info("Will shape events accord to SQL Server 2005 requirements");
      auditEventShaper = new SQLServerAEShaper();
    } else {
      auditEventShaper = new NullAEShaper();
    }

    applicationName = servletContext.getServletContextName();
View Full Code Here

TOP

Related Classes of ch.qos.logback.audit.persistent.SQLServerAEShaper

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.