Skip to content

Commit

Permalink
[AAE-16040] Introduce getters and setters for
Browse files Browse the repository at this point in the history
technical name and display name for project
  • Loading branch information
indrayanganguly committed Aug 16, 2023
1 parent bddedbf commit 68fe110
Showing 1 changed file with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,22 @@ public interface Project<U> extends Auditable<U> {

void setName(String name);

default String getTechnicalName() {
return getName();
}

default void setTechnicalName(String technicalName) {
setName(technicalName);
}

default String getDisplayName() {
return getName();
}

default void setDisplayName(String displayName) {
setName(displayName);
}

String getVersion();

void setVersion(String version);
Expand Down

0 comments on commit 68fe110

Please sign in to comment.