}
private static final class YearsMapper implements RowMapper<AnneeScolaire> {
public AnneeScolaire mapRow(ResultSet rs, int rowNum)
throws SQLException {
AnneeScolaire anneeScolaire = new AnneeScolaire();
anneeScolaire.setAnneescolaire(rs.getString("anneeScolaire"));
return anneeScolaire;
}