-
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.
Merge pull request #96 from InseeFr/devRefactors
Refactors
- Loading branch information
Showing
80 changed files
with
1,984 additions
and
1,777 deletions.
There are no files selected for viewing
23 changes: 0 additions & 23 deletions
23
src/main/java/fr/insee/genesis/configuration/PortConfig.java
This file was deleted.
Oops, something went wrong.
10 changes: 5 additions & 5 deletions
10
src/main/java/fr/insee/genesis/controller/adapter/LunaticJsonAdapter.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
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
4 changes: 3 additions & 1 deletion
4
...omain/dtos/CampaignWithQuestionnaire.java → ...roller/dto/CampaignWithQuestionnaire.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
4 changes: 3 additions & 1 deletion
4
...omain/dtos/QuestionnaireWithCampaign.java → ...roller/dto/QuestionnaireWithCampaign.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
2 changes: 1 addition & 1 deletion
2
...see/genesis/domain/dtos/SurveyUnitId.java → .../genesis/controller/dto/SurveyUnitId.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
21 changes: 21 additions & 0 deletions
21
src/main/java/fr/insee/genesis/controller/dto/SurveyUnitSimplified.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,21 @@ | ||
package fr.insee.genesis.controller.dto; | ||
|
||
import fr.insee.genesis.domain.model.surveyunit.CollectedVariable; | ||
import fr.insee.genesis.domain.model.surveyunit.Variable; | ||
import fr.insee.genesis.domain.model.surveyunit.Mode; | ||
import lombok.Builder; | ||
import lombok.Data; | ||
|
||
import java.util.List; | ||
|
||
@Builder | ||
@Data | ||
public class SurveyUnitSimplified { | ||
|
||
private String idQuest; | ||
private String idCampaign; | ||
private String idUE; | ||
private Mode mode; | ||
private List<CollectedVariable> variablesUpdate; | ||
private List<Variable> externalVariables; | ||
} |
21 changes: 0 additions & 21 deletions
21
src/main/java/fr/insee/genesis/controller/responses/SurveyUnitUpdateSimplified.java
This file was deleted.
Oops, something went wrong.
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.