Rev 29928 | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.common.enumuration;public enum MessageType {notification("notification"), announcement("announcement"), scheme("scheme"), marketing("marketing"), reminder("reminder"), pricechange("pricechange"), wallet("wallet");private String value;private MessageType(String value) {this.value = value;}public String getValue() {return value;}}