Subversion Repositories SmartDukaan

Rev

Rev 24700 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 24700 Rev 24787
Line 1... Line 1...
1
package com.spice.profitmandi.dao.enumuration.cs;
1
package com.spice.profitmandi.dao.enumuration.cs;
2
 
2
 
3
public enum TicketStatus {
3
public enum TicketStatus {
4
	
4
	
5
	OPENED("opened"),
5
	OPENED("opened"),
6
	CLOSED("closed");
6
	CLOSED("closed"),
-
 
7
	RESOLVED("resolved");
7
	private final String value;
8
	private final String value;
8
 
9
 
9
	private TicketStatus(String value) {
10
	private TicketStatus(String value) {
10
		this.value = value;
11
		this.value = value;
11
	}
12
	}