use of com.consol.citrus.samples.todolist.model.TodoEntry in project citrus-samples by christophd.
the class JdbcTodoListDao method convertToTodoEntry.
private List<TodoEntry> convertToTodoEntry(final ResultSet resultSet) throws SQLException {
final List<TodoEntry> list = new ArrayList<>();
while (resultSet.next()) {
final String id = resultSet.getString(1);
final String title = resultSet.getString(2);
final String description = resultSet.getString(3);
list.add(new TodoEntry(UUID.fromString(id), title, description));
}
return list;
}
Aggregations