We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactor campaign package handling:
Checks
Example structure:
pearl-jam-back-office ├── src │ ├── main │ │ ├── java │ │ │ └── fr │ │ │ └── insee │ │ │ └── pearljam │ │ │ ├── application │ │ │ │ ├── config │ │ │ │ │ └── SecurityConfig.java │ │ │ │ └── controller │ │ │ │ ├── campaign │ │ │ │ │ ├── CampaignController.java │ │ │ │ │ ├── OrganizationUnitController.java │ │ │ │ │ └── dto │ │ │ │ │ ├── in │ │ │ │ │ └── out │ │ │ │ │ ├── OrganizationUnitDTO.java │ │ │ │ │ └── CampaignDTO.java │ │ │ │ └── questionnaire │ │ │ │ ├── QuestionnaireController.java │ │ │ │ └── dto │ │ │ │ └── QuestionnaireDTO.java │ │ │ ├── domain │ │ │ │ ├── campaign │ │ │ │ │ ├── model │ │ │ │ │ │ ├── Campaign.java │ │ │ │ │ │ └── OrganizationalUnit.java │ │ │ │ │ ├── service │ │ │ │ │ │ ├── CampaignDomainService.java (implements CampaignService) │ │ │ │ │ │ └── OrganizationalUnitDomainService.java (implements OrganizationalUnitService) │ │ │ │ │ └── port │ │ │ │ │ ├── userside │ │ │ │ │ │ ├── OrganizationalService.java │ │ │ │ │ │ └── CampaignService.java │ │ │ │ │ └── serverside │ │ │ │ │ ├── OrganizationalUnitPort.java │ │ │ │ │ └── CampaignPort.java │ │ │ │ └── questionnaire │ │ │ │ ├── model │ │ │ │ ├── service │ │ │ │ └── port │ │ │ └── infrastructure │ │ │ ├── persistence │ │ │ │ ├── campaign │ │ │ │ │ ├── adapter │ │ │ │ │ │ ├── OrganizationalUnitAdapter.java (implements OrganizationalUnitAdapter) │ │ │ │ │ │ └── CampaignAdapter.java (implements CampaignPort) │ │ │ │ │ ├── repository │ │ │ │ │ │ ├── OrganizationalUnitRepository.java │ │ │ │ │ │ └── CampaignRepository.java │ │ │ │ │ └── entity │ │ │ │ │ └── CampaignDB.java │ │ │ │ └── questionnaire │ │ │ │ ├── repository │ │ │ │ │ └── QuestionnaireRepository.java │ │ │ │ └── entity │ │ │ │ └── QuestionnaireDB.java │ │ │ └── security │ │ └── resources │ │ └── application.properties │ └── test │ ├── java │ │ └── fr │ │ └── insee │ │ └── pearljam │ │ ├── application │ │ │ └── controller │ │ │ └── campaign │ │ │ └── CampaignControllerTest.java │ │ ├── domain │ │ └── infrastructure │ └── resources ├── pom.xml └── README.md
The text was updated successfully, but these errors were encountered:
SimonDmz
No branches or pull requests
Refactor campaign package handling:
Checks
Example structure:
The text was updated successfully, but these errors were encountered: