Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions src/main/java/com/greencode/entity/Project.java
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}