1 package example;2 3 /**4 * Interface for the EmitterMBean.5 */6 public interface EmitterMBean {7 /**8 * Sends a notification.9 */10 public void send();11 }12