Rev 24700 | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.enumuration.cs;public enum TicketStatus {OPENED("opened"),CLOSED("closed"),RESOLVED("resolved");private final String value;private TicketStatus(String value) {this.value = value;}public String getValue() {return value;}}