Package org.mifosplatform.infrastructure.hooks.data

Examples of org.mifosplatform.infrastructure.hooks.data.EventResultSetExtractor


  private List<Grouping> getTemplateForEvents() {
    final String sql = "select p.grouping, p.entity_name, p.action_name from m_permission p "
        + " where p.action_name NOT LIKE '%CHECKER%' AND p.action_name NOT LIKE '%READ%' "
        + " order by p.grouping, p.entity_name ";
    final EventResultSetExtractor extractor = new EventResultSetExtractor();
    return this.jdbcTemplate.query(sql, extractor);
  }
View Full Code Here

TOP

Related Classes of org.mifosplatform.infrastructure.hooks.data.EventResultSetExtractor

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.