Example #1
0
 /**
  * Sets a property associated with the current event. Calling this method is equivilent to calling
  * <code>event.getMessage().setProperty(..., ...)</code>
  *
  * @param name the property name or key
  * @param value the property value
  */
 public void setProperty(String name, Object value) {
   event.setProperty(name, value);
 }