This is an automated email from the ASF dual-hosted git repository. danhaywood pushed a commit to branch v2 in repository https://gitbox.apache.org/repos/asf/causeway-app-petclinic.git
commit bea4e29bcdeaac77c274193a3ab49da6a63d7f1f Author: Dan Haywood <[email protected]> AuthorDate: Sun May 26 13:40:59 2024 +0100 adds PetSpecies enum --- .../main/java/domainapp/modules/petowner/value/PetSpecies.java | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/module-petowner/src/main/java/domainapp/modules/petowner/value/PetSpecies.java b/module-petowner/src/main/java/domainapp/modules/petowner/value/PetSpecies.java new file mode 100644 index 0000000..6970e42 --- /dev/null +++ b/module-petowner/src/main/java/domainapp/modules/petowner/value/PetSpecies.java @@ -0,0 +1,8 @@ +package domainapp.modules.petowner.value; + +public enum PetSpecies { + Dog, + Cat, + Hamster, + Budgerigar, +}
