}
private static final class AccTypeStatsMapper implements
RowMapper<TypeStats> {
public TypeStats mapRow(ResultSet rs, int rowNum) throws SQLException {
TypeStats typeStats = new TypeStats();
typeStats.setLibelle(rs.getString("libelle"));
typeStats.setCountap(rs.getInt("countap"));
return typeStats;
}