KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > compliance > standard > support > NoConstructorsStandardMBean


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.standard.support;
9
10 import javax.management.MBeanConstructorInfo;
11
12 public class NoConstructorsStandardMBean
13    extends MyStandardMBean
14 {
15
16    public NoConstructorsStandardMBean()
17       throws Exception
18    {
19       super();
20    }
21
22    protected MBeanConstructorInfo[] getConstructors(MBeanConstructorInfo[] info, Object implementation)
23    {
24       return new MBeanConstructorInfo[0];
25    }
26 }
27
Popular Tags