-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: improve contact endpoints for management front (#82)
* feat: improve contact endpoints for management front * feat: improve contact endpoints * fix: contact search request * fix: parameters method in search contact * feat: update search survey unit controller * feat: update Dto to add function and remove list sources * fix: search contact upper case * fix: search contact upper case * feat: update survey unit endpoints for pilotage management front * feat: update survey unit endpoints for pilotage management front * fix: had survey unit questioning informations * fix: sonar issues * fix: remove cucumber test * test: add search contact cucumber test * tests: improve cucumber test * feat: improve search contact * fix: imporve validation message in search contact * fix: search contact with special characters * fix: cucumber tests for search contact * feat: add search survey unit * tests: add cucumber tests to search survey units * test: fix test search survey unit * tests: refactor * refactor: set status in annotation * refactor: spelling postgres for Simon * chore: update spring boot version * fix: moog bug when zip code is null
- Loading branch information
Showing
62 changed files
with
1,093 additions
and
406 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 8 additions & 8 deletions
16
...anagement/query/dto/SearchContactDto.java → ...agement/contact/dto/SearchContactDto.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
package fr.insee.survey.datacollectionmanagement.query.dto; | ||
|
||
public interface SearchContactDto { | ||
String getIdentifier(); | ||
String getEmail(); | ||
String getFirstName(); | ||
String getLastName(); | ||
} | ||
package fr.insee.survey.datacollectionmanagement.contact.dto; | ||
|
||
public interface SearchContactDto { | ||
String getIdentifier(); | ||
String getEmail(); | ||
String getFirstName(); | ||
String getLastName(); | ||
} |
14 changes: 14 additions & 0 deletions
14
src/main/java/fr/insee/survey/datacollectionmanagement/contact/dto/SearchContactDtoImpl.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package fr.insee.survey.datacollectionmanagement.contact.dto; | ||
|
||
import lombok.Getter; | ||
import lombok.Setter; | ||
|
||
@Getter | ||
@Setter | ||
public class SearchContactDtoImpl implements SearchContactDto{ | ||
|
||
private String identifier; | ||
private String email; | ||
private String firstName; | ||
private String lastName; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.