01: package example; 02: 03: /** 04: * Management interface for the basic MBean. 05: */ 06: public interface TestAdmin { 07: /** 08: * Gets the data value. 09: */ 10: public String getData(); 11: }