1 package example;2 3 /**4 * Management interface for the basic MBean.5 */6 public interface BasicMBean {7 /**8 * Gets the data value.9 */10 public String getData();11 12 /**13 * Sets the value.14 */15 public void setData(String data);16 }17