Package de.scoopgmbh.copper.management.model

Examples of de.scoopgmbh.copper.management.model.AuditTrailInfo


    RowMapper<AuditTrailInfo> rowMapper = new RowMapper<AuditTrailInfo>(){

      public AuditTrailInfo mapRow(ResultSet rs, int arg1)
          throws SQLException {
       
        return new AuditTrailInfo(
                    rs.getLong("SEQ_ID"),
                    rs.getString("TRANSACTION_ID"),
                    rs.getString("CONVERSATION_ID"),
                    rs.getString("CORRELATION_ID"),
                    rs.getTimestamp("OCCURRENCE").getTime(),
View Full Code Here

TOP

Related Classes of de.scoopgmbh.copper.management.model.AuditTrailInfo

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.