Subversion Repositories SmartDukaan

Rev

Rev 29928 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
25683 tejbeer 1
package com.spice.profitmandi.common.enumuration;
2
 
3
public enum MessageType {
30025 amit.gupta 4
	notification("notification"), announcement("announcement"), scheme("scheme"), marketing("marketing"), reminder("reminder"), pricechange("pricechange"), wallet("wallet");
25683 tejbeer 5
 
6
	private String value;
7
 
8
	private MessageType(String value) {
9
		this.value = value;
10
	}
11
 
12
	public String getValue() {
13
		return value;
14
	}
15
 
16
}