-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/develop' into CDE-319-checkup-de…
…-logskbart
- Loading branch information
Showing
50 changed files
with
268 additions
and
145 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
12 changes: 0 additions & 12 deletions
12
src/main/java/fr/abes/bestppn/dto/kafka/PpnWithDestinationDto.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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
package fr.abes.bestppn.model; | ||
|
||
import fr.abes.bestppn.utils.DESTINATION_TOPIC; | ||
import fr.abes.bestppn.utils.TYPE_SUPPORT; | ||
import lombok.Getter; | ||
import lombok.NoArgsConstructor; | ||
import lombok.Setter; | ||
import org.springframework.lang.Nullable; | ||
|
||
import java.util.List; | ||
|
||
@Getter | ||
@Setter | ||
@NoArgsConstructor | ||
public class BestPpn { | ||
|
||
@Nullable | ||
private String ppn; | ||
|
||
@Nullable | ||
private TYPE_SUPPORT typeSupport; | ||
|
||
@Nullable | ||
private DESTINATION_TOPIC destination; | ||
|
||
@Nullable | ||
private List<String> logs; | ||
|
||
public BestPpn(String ppn, DESTINATION_TOPIC destination) { | ||
this.ppn = ppn; | ||
this.destination = destination; | ||
} | ||
|
||
public BestPpn(String ppn, DESTINATION_TOPIC destination, TYPE_SUPPORT typeSupport) { | ||
this.ppn = ppn; | ||
this.destination = destination; | ||
this.typeSupport = typeSupport; | ||
} | ||
|
||
public BestPpn(String ppn, DESTINATION_TOPIC destination, List<String> logs) { | ||
this.ppn = ppn; | ||
this.destination = destination; | ||
this.logs = logs; | ||
} | ||
|
||
public BestPpn(String ppn, DESTINATION_TOPIC destination, TYPE_SUPPORT typeSupport, List<String> logs) { | ||
this.ppn = ppn; | ||
this.destination = destination; | ||
this.typeSupport = typeSupport; | ||
this.logs = logs; | ||
} | ||
} |
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,44 @@ | ||
package fr.abes.bestppn.model.dto; | ||
|
||
import com.fasterxml.jackson.annotation.JsonInclude; | ||
import fr.abes.bestppn.model.BestPpn; | ||
import fr.abes.bestppn.utils.TYPE_SUPPORT; | ||
import lombok.Getter; | ||
import lombok.NoArgsConstructor; | ||
import lombok.Setter; | ||
import org.springframework.lang.Nullable; | ||
|
||
import java.util.List; | ||
|
||
@Getter | ||
@Setter | ||
@NoArgsConstructor | ||
public class BestPpnDto { | ||
@Nullable | ||
@JsonInclude(JsonInclude.Include.NON_NULL) | ||
private String ppn; | ||
|
||
@Nullable | ||
@JsonInclude(JsonInclude.Include.NON_NULL) | ||
private TYPE_SUPPORT typeSupport; | ||
|
||
@Nullable | ||
@JsonInclude(JsonInclude.Include.NON_NULL) | ||
private List<String> logs; | ||
|
||
public BestPpnDto(String ppn, TYPE_SUPPORT typeSupport, List<String> logs) { | ||
this.ppn = ppn; | ||
this.typeSupport = typeSupport; | ||
this.logs = logs; | ||
} | ||
|
||
public BestPpnDto(List<String> logs) { | ||
this.logs = logs; | ||
} | ||
|
||
public BestPpnDto(BestPpn bestPpn) { | ||
this.ppn = bestPpn.getPpn(); | ||
this.typeSupport = bestPpn.getTypeSupport(); | ||
this.logs = bestPpn.getLogs(); | ||
} | ||
} |
4 changes: 2 additions & 2 deletions
4
.../fr/abes/bestppn/dto/PackageKbartDto.java → ...es/bestppn/model/dto/PackageKbartDto.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
...s/bestppn/dto/kafka/KbartProviderDto.java → ...ppn/model/dto/kafka/KbartProviderDto.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
...abes/bestppn/dto/kafka/LigneKbartDto.java → ...estppn/model/dto/kafka/LigneKbartDto.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
...estppn/dto/kafka/PpnKbartProviderDto.java → .../model/dto/kafka/PpnKbartProviderDto.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
...ava/fr/abes/bestppn/dto/mail/MailDto.java → .../abes/bestppn/model/dto/mail/MailDto.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
...es/bestppn/dto/wscall/PpnWithTypeDto.java → ...tppn/model/dto/wscall/PpnWithTypeDto.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
...stppn/dto/wscall/ResultDat2PpnWebDto.java → ...model/dto/wscall/ResultDat2PpnWebDto.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
.../bestppn/dto/wscall/ResultWsSudocDto.java → ...pn/model/dto/wscall/ResultWsSudocDto.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
...s/bestppn/dto/wscall/SearchDatWebDto.java → ...ppn/model/dto/wscall/SearchDatWebDto.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
.../abes/bestppn/entity/ExecutionReport.java → ...bestppn/model/entity/ExecutionReport.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: 2 additions & 2 deletions
4
...fr/abes/bestppn/entity/PpnResultList.java → ...s/bestppn/model/entity/PpnResultList.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
...abes/bestppn/entity/bacon/LigneKbart.java → ...estppn/model/entity/bacon/LigneKbart.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
...r/abes/bestppn/entity/bacon/Provider.java → .../bestppn/model/entity/bacon/Provider.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
...bestppn/entity/bacon/ProviderPackage.java → ...n/model/entity/bacon/ProviderPackage.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
.../bestppn/entity/basexml/NoticesBibio.java → ...pn/model/entity/basexml/NoticesBibio.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
...n/entity/basexml/notice/Controlfield.java → ...l/entity/basexml/notice/Controlfield.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
...tppn/entity/basexml/notice/Datafield.java → ...odel/entity/basexml/notice/Datafield.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
...tppn/entity/basexml/notice/NoticeXml.java → ...odel/entity/basexml/notice/NoticeXml.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
...stppn/entity/basexml/notice/SubField.java → ...model/entity/basexml/notice/SubField.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
src/main/java/fr/abes/bestppn/repository/bacon/LigneKbartRepository.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
src/main/java/fr/abes/bestppn/repository/bacon/ProviderPackageRepository.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
src/main/java/fr/abes/bestppn/repository/bacon/ProviderRepository.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
src/main/java/fr/abes/bestppn/repository/basexml/NoticesBibioRepository.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
Oops, something went wrong.