Subversion Repositories SmartDukaan

Rev

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

Rev 24700 Rev 24747
Line 1... Line 1...
1
package com.spice.profitmandi.dao.entity.cs;
1
package com.spice.profitmandi.dao.entity.cs;
2
 
2
 
3
public enum TicketSearchType {
3
public enum TicketSearchType {
4
	
4
	
5
	PARTNER_NAME("Partner Name"),
5
	PARTNER_NAME("Partner Name"),
6
	TICKET_ID("Ticket Id"),
6
	TICKET_ID("Ticket Id");
7
	ASSIGNEE("assignee");
7
	
8
	private String value;
8
	private String value;
9
	private TicketSearchType(String value){
9
	private TicketSearchType(String value){
10
		this.value = value;
10
		this.value = value;
11
	}
11
	}
12
	public String getValue() {
12
	public String getValue() {