Rev 25683 | Rev 29928 | Go to most recent revision | 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");private String value;private MessageType(String value) {this.value = value;}public String getValue() {return value;}}