Create the enum types needed by the entity layer:
Role.java -- USER, AGENT, ADMIN
TicketStatus.java -- OPEN, IN_PROGRESS, ON_HOLD, RESOLVED, CLOSED
Priority.java -- LOW, MEDIUM, HIGH, URGENT
Package: com.absolutecode.ticketsystem.model
These are referenced by the User and Ticket entities and must be created before those entities.
Create the enum types needed by the entity layer:
Role.java-- USER, AGENT, ADMINTicketStatus.java-- OPEN, IN_PROGRESS, ON_HOLD, RESOLVED, CLOSEDPriority.java-- LOW, MEDIUM, HIGH, URGENTPackage:
com.absolutecode.ticketsystem.modelThese are referenced by the User and Ticket entities and must be created before those entities.