-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ApiInitialisation refactor for readability
- Loading branch information
Showing
27 changed files
with
367 additions
and
240 deletions.
There are no files selected for viewing
26 changes: 26 additions & 0 deletions
26
arc-core/src/main/java/fr/insee/arc/core/model/TraitementOperationFichier.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,26 @@ | ||
package fr.insee.arc.core.model; | ||
|
||
public enum TraitementOperationFichier { | ||
D("1", "Delete file") | ||
, R("R", "Replay file") | ||
, RA("RA", "Replay archive") | ||
; | ||
|
||
private String dbValue; | ||
private String comment; | ||
|
||
private TraitementOperationFichier(String dbValue, String comment) | ||
{ | ||
this.dbValue=dbValue; | ||
this.comment=comment; | ||
} | ||
|
||
public String getDbValue() { | ||
return dbValue; | ||
} | ||
|
||
public String getComment() { | ||
return comment; | ||
} | ||
|
||
} |
17 changes: 0 additions & 17 deletions
17
arc-core/src/main/java/fr/insee/arc/core/model/TraitementTableExecution.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
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
Oops, something went wrong.