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;
}