1 25 26 package org.snipsnap.notification; 27 28 29 35 36 public class Message { 37 public final static String SNIP_CREATE="SNIP_CREATE"; 38 public final static String SNIP_MODIFIED = "SNIP_MODIFIED"; 39 40 private String type; 41 private Object value; 42 43 public Message(String type, Object value) { 44 this.type=type; 45 this.value=value; 46 } 47 48 public String getType() { 49 return type; 50 } 51 52 public Object getValue() { 53 return value; 54 } 55 56 public String toString() { 57 return "("+type+"="+value+")"; 58 } 59 } | Popular Tags |