-
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 pull request #23 from vzwingma/feat/delete_deprecated_functions
Feat/delete deprecated functions
- Loading branch information
Showing
11 changed files
with
60 additions
and
143 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
41 changes: 41 additions & 0 deletions
41
...budget/serverless/services/operations/business/model/operation/LibellesOperationEnum.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,41 @@ | ||
/* | ||
*/ | ||
package io.github.vzwingma.finances.budget.serverless.services.operations.business.model.operation; | ||
|
||
import lombok.Getter; | ||
|
||
/** | ||
* Libellé dans les opérations | ||
* @author vzwingma | ||
* | ||
*/ | ||
@Getter | ||
public enum LibellesOperationEnum { | ||
|
||
// Libellé en retard | ||
EN_RETARD("retard", "[En Retard]"); | ||
|
||
|
||
private final String id; | ||
private final String libelle; | ||
|
||
/** | ||
* Constructeur | ||
* @param id : id de l'enum | ||
* @param libelle : libellé de l'enum | ||
*/ | ||
LibellesOperationEnum(String id, String libelle){ | ||
this.id = id; | ||
this.libelle = libelle; | ||
} | ||
|
||
|
||
/* (non-Javadoc) | ||
* @see java.lang.Enum#toString() | ||
*/ | ||
@Override | ||
public String toString(){ | ||
return getLibelle(); | ||
} | ||
} |
26 changes: 0 additions & 26 deletions
26
.../serverless/services/operations/business/model/operation/LibellesOperationsAPIObject.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