KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > mx4j > server > MX4JMBeanServerDelegate


1 /*
2  * Copyright (C) The MX4J Contributors.
3  * All rights reserved.
4  *
5  * This software is distributed under the terms of the MX4J License version 1.0.
6  * See the terms of the MX4J License in the documentation provided with this software.
7  */

8
9 package mx4j.server;
10
11 import javax.management.MBeanServerDelegate JavaDoc;
12
13 /**
14  * The MBeanServerDelegate subclass typical of the MX4J implementation.
15  *
16  * @version $Revision: 1.12 $
17  * @see javax.management.MBeanServerBuilder
18  */

19 public class MX4JMBeanServerDelegate extends MBeanServerDelegate JavaDoc
20 {
21    public String JavaDoc getImplementationName()
22    {
23       return "MX4J";
24    }
25
26    public String JavaDoc getImplementationVendor()
27    {
28       return "The MX4J Team";
29    }
30
31    public String JavaDoc getImplementationVersion()
32    {
33       return "3.0.2";
34    }
35 }
36
Popular Tags