Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
24883 amit.gupta 1
package com.spice.profitmandi.dao.enumuration.dtr;
2
 
3
public enum RewardType {
4
	REVENUE("revenue"),
5
	TARGET("target"),
6
	SPECIAL("special");
7
	private String value;
8
	private RewardType(String value){
9
		this.value = value;
10
	}
11
	public String getValue() {
12
		return value;
13
	}
14
}