1 /* 2 * JBoss, the OpenSource J2EE webOS 3 * 4 * Distributable under LGPL license. 5 * See terms of license at gnu.org. 6 */ 7 8 package test.compliance.monitor.support; 9 10 public interface GaugeSupportMBean 11 { 12 public Number getValue(); 13 public void setValue(Number value); 14 public Number getWrongNull(); 15 public String getWrongType(); 16 public Number getWrongException(); 17 public void setWriteOnly(Number value); 18 } 19