Package com.iisigroup.cap.batch.support

Examples of com.iisigroup.cap.batch.support.BatchScheduleRowMapper


    BatchScheduleDao {

  @Override
  public Page<BatchSchedule> findForPage(ISearch search) {
    return getNamedJdbcTemplate().queryForPage("batchSch.findPage", search,
        new BatchScheduleRowMapper());
  }
View Full Code Here


  @Override
  public List<BatchSchedule> findByHostId(List<String> hostIds) {
    Map<String, Object> args = new HashMap<String, Object>();
    args.put("hostIds", hostIds);
    return getNamedJdbcTemplate().query("batchSch.findByHost", null, args,
        new BatchScheduleRowMapper());
  }
View Full Code Here

  @Override
  public BatchSchedule findById(String id) {
    Map<String, Object> sch = new HashMap<String, Object>();
    sch.put("schId", id);
    return getNamedJdbcTemplate().queryForObject("batchSch.findById", sch,
        new BatchScheduleRowMapper());
  }
View Full Code Here

TOP

Related Classes of com.iisigroup.cap.batch.support.BatchScheduleRowMapper

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.