Subversion Repositories SmartDukaan

Rev

View as "text/plain" | Blame | Last modification | View Log | RSS feed

package com.spice.profitmandi.dao.enumuration.dtr;

public enum RewardType {
        REVENUE("revenue"),
        TARGET("target"),
        SPECIAL("special");
        private String value;
        private RewardType(String value){
                this.value = value;
        }
        public String getValue() {
                return value;
        }
}