Subversion Repositories SmartDukaan

Rev

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

Rev 29928 Rev 30025
Line 1... Line 1...
1
package com.spice.profitmandi.common.enumuration;
1
package com.spice.profitmandi.common.enumuration;
2
 
2
 
3
public enum MessageType {
3
public enum MessageType {
4
	notification("notification"), announcement("announcement"), scheme("scheme"), marketing("marketing"), reminder("reminder"), pricechange("pricechange");
4
	notification("notification"), announcement("announcement"), scheme("scheme"), marketing("marketing"), reminder("reminder"), pricechange("pricechange"), wallet("wallet");
5
 
5
 
6
	private String value;
6
	private String value;
7
 
7
 
8
	private MessageType(String value) {
8
	private MessageType(String value) {
9
		this.value = value;
9
		this.value = value;