Package com.defaultcompany.external.model

Examples of com.defaultcompany.external.model.TaskInfo


  }
 
  class TaskInfoRowMapper implements RowMapper {

    public Object mapRow(ResultSet rs, int arg1) throws SQLException {
      TaskInfo item = new TaskInfo();
     
      item.setInstanceId(rs.getString("INSTID"));
      item.setTaskId(rs.getString("TASKID"));
      item.setTracingTag(rs.getString("TRCTAG"));
     
      item.setHandler(rs.getString("TOOL"));
      item.setMainParam(rs.getString("EXT1"));
      item.setSubParam(rs.getString("EXT2"));
     
      item.setExternalKey(rs.getString("INFO"));
       
      return item;
    }
View Full Code Here

TOP

Related Classes of com.defaultcompany.external.model.TaskInfo

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.