Advertisement
Guest User

Untitled

a guest
Dec 9th, 2016
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. public enum Level {
  2.  
  3. GREEN, // Severity Level 1, Everything is fine. CP Process is moving forward as planned with no visible obstacles.
  4.  
  5. Yellow_GREEN, // Severity Level 2, attention is needed, forward progress can be made.
  6.  
  7. YELLOW, // Severity Level 3, A pending condition to Triage.
  8.  
  9. YELLOW_RED, // Severity Level 4, attention is needed until progress can no longer be made.
  10.  
  11. RED; // Severity Level 5, An immediate call to Triage.
  12.  
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement