1 /*2 * JBoss, the OpenSource J2EE webOS3 *4 * Distributable under LGPL license.5 * See terms of license at gnu.org.6 */7 8 package test.compliance.standard.support;9 10 public class StandardDerived2 extends StandardParent implements StandardDerived2MBean11 {12 /**13 * our own MBean interface overrides the StandardParentMBean one we inherited.14 */15 16 public void setDerivedValue(String derived)17 {18 }19 20 public String getParentValue()21 {22 return null;23 }24 }25