Package com.skyline.base.model

Examples of com.skyline.base.model.Site


  public static SiteMapper getMapper() {
    return MAPPER;
  }

  public Site mapRow(ResultSet rs, int rowNum) throws SQLException {
    Site s = new Site();
    s.setId(rs.getString("id"));
    s.setName(rs.getString("name"));
    s.setType(rs.getString("type"));
    s.setParent(rs.getString("parent"));
    return s;
  }
View Full Code Here

TOP

Related Classes of com.skyline.base.model.Site

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.