diff --git a/src/main/java/com/greencode/entity/Project.java b/src/main/java/com/greencode/entity/Project.java index 66cabef..e81bf33 100644 --- a/src/main/java/com/greencode/entity/Project.java +++ b/src/main/java/com/greencode/entity/Project.java @@ -203,12 +203,30 @@ public enum ProjectCategory { RESEARCH, OTHER } + /** + * represents the current status of the program + */ public enum ProjectStatus { + /** + * project is planned but the work has not yet started + */ PLANNED, + /** + * project is currently in progress + */ IN_PROGRESS, + /** + * project is temporarily on hold + */ ON_HOLD, + /** + * project has been completed successful + */ COMPLETED, + /** + * project has been cancelled and will not run + */ CANCELLED } }