Package org.apache.servicemix.nmr.audit.jdbc

Examples of org.apache.servicemix.nmr.audit.jdbc.JdbcAuditor.afterPropertiesSet()


    public void testInsertUpdate() throws Exception {
        AbstractAuditorTest.ReceiverEndpoint receiver = createReceiver(nmr, false, false);

        JdbcAuditor jdbcAuditor = new JdbcAuditor();
        jdbcAuditor.setDataSource(dataSource);
        jdbcAuditor.afterPropertiesSet();
        LuceneAuditor auditor = new LuceneAuditor();
        auditor.setDelegatedAuditor(jdbcAuditor);
        LuceneIndexer indexer = new LuceneIndexer();
        indexer.setDirectoryName(index);
        auditor.setLuceneIndexer(indexer);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.