diff options
author | Adrián Oliva <adrian.oliva@cimat.mx> | 2023-05-25 19:28:28 -0600 |
---|---|---|
committer | Adrián Oliva <adrian.oliva@cimat.mx> | 2023-05-25 19:28:28 -0600 |
commit | 7bf30fc960b07a7cdc93ac469a5c2982f6cf53aa (patch) | |
tree | 312a86206b82ffd6fc5ed878122b04268897475b /src/main/java | |
parent | 4366c7f97f5f8faa4d7498ec051cbd1ebf1c951e (diff) | |
download | ToDo-App-BE-7bf30fc960b07a7cdc93ac469a5c2982f6cf53aa.tar.gz ToDo-App-BE-7bf30fc960b07a7cdc93ac469a5c2982f6cf53aa.zip |
Extended "save" method.
It now can overwrite existing todos if they share the same ID.
Diffstat (limited to 'src/main/java')
-rw-r--r-- | src/main/java/com/encora/ToDosRepository.java | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/src/main/java/com/encora/ToDosRepository.java b/src/main/java/com/encora/ToDosRepository.java index c979e11..5b8b292 100644 --- a/src/main/java/com/encora/ToDosRepository.java +++ b/src/main/java/com/encora/ToDosRepository.java @@ -13,6 +13,7 @@ import org.springframework.data.repository.query.FluentQuery; import java.util.ArrayList; import java.util.List; +import java.util.Objects; import java.util.Optional; import java.util.function.Function; @@ -41,8 +42,27 @@ public class ToDosRepository implements JpaRepository<ToDos, Integer> { // Save new element. @Override public <S extends ToDos> S save(S entity) { - entity.setId(++this.lastId); + if (entity.getId() != null) { + // If the entity has an ID, search for it in our list of to dos and + // replace it. + ToDos selectedToDo; + + for (int index = 0; index < this.todos.size(); index++) { + selectedToDo = this.todos.get(index); + if (Objects.equals(selectedToDo.getId(), entity.getId())) { + this.todos.set(index, entity); + return null; + } + } + } else { + // If entity doesn't have an ID, assign it a new one. + entity.setId(++this.lastId); + } + + // If the ID couldn't be found or the entity didn't exist, append the + // entity to our list. this.todos.add(entity); + return null; } |