author | tbell |
Wed, 09 Jul 2008 09:56:00 -0700 | |
changeset 834 | dc74d4ddc28e |
parent 715 | f16baef3a20e |
parent 833 | bfa2bef7517c |
child 4156 | acaa49a2768a |
permissions | -rw-r--r-- |
2 | 1 |
/* |
715 | 2 |
* Copyright 2005-2008 Sun Microsystems, Inc. All Rights Reserved. |
2 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. Sun designates this |
|
8 |
* particular file as subject to the "Classpath" exception as provided |
|
9 |
* by Sun in the LICENSE file that accompanied this code. |
|
10 |
* |
|
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
* accompanied this code). |
|
16 |
* |
|
17 |
* You should have received a copy of the GNU General Public License version |
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
* |
|
21 |
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, |
|
22 |
* CA 95054 USA or visit www.sun.com if you need additional information or |
|
23 |
* have any questions. |
|
24 |
*/ |
|
25 |
||
26 |
package com.sun.jmx.mbeanserver; |
|
27 |
||
28 |
import java.lang.reflect.Method; |
|
29 |
||
30 |
import javax.management.MBeanInfo; |
|
31 |
import javax.management.MBeanServer; |
|
32 |
import javax.management.NotCompliantMBeanException; |
|
33 |
import javax.management.ObjectName; |
|
687 | 34 |
import javax.management.openmbean.MXBeanMappingFactory; |
2 | 35 |
|
36 |
/** |
|
37 |
* Base class for Standard MBeans. |
|
38 |
* |
|
39 |
* @since 1.6 |
|
40 |
*/ |
|
41 |
public class StandardMBeanSupport extends MBeanSupport<Method> { |
|
42 |
||
43 |
/** |
|
833
bfa2bef7517c
6323980: Annotations to simplify MBean development
emcmanus
parents:
687
diff
changeset
|
44 |
* <p>Construct a Standard MBean that wraps the given resource using the |
bfa2bef7517c
6323980: Annotations to simplify MBean development
emcmanus
parents:
687
diff
changeset
|
45 |
* given Standard MBean interface.</p> |
bfa2bef7517c
6323980: Annotations to simplify MBean development
emcmanus
parents:
687
diff
changeset
|
46 |
* |
bfa2bef7517c
6323980: Annotations to simplify MBean development
emcmanus
parents:
687
diff
changeset
|
47 |
* @param resource the underlying resource for the new MBean. |
bfa2bef7517c
6323980: Annotations to simplify MBean development
emcmanus
parents:
687
diff
changeset
|
48 |
* @param mbeanInterfaceType the class or interface to be used to determine |
bfa2bef7517c
6323980: Annotations to simplify MBean development
emcmanus
parents:
687
diff
changeset
|
49 |
* the MBean's management interface. An interface if this is a |
bfa2bef7517c
6323980: Annotations to simplify MBean development
emcmanus
parents:
687
diff
changeset
|
50 |
* classic Standard MBean; a class if this is a {@code @ManagedResource}. |
bfa2bef7517c
6323980: Annotations to simplify MBean development
emcmanus
parents:
687
diff
changeset
|
51 |
* @param <T> a type parameter that allows the compiler to check |
bfa2bef7517c
6323980: Annotations to simplify MBean development
emcmanus
parents:
687
diff
changeset
|
52 |
* that {@code resource} implements {@code mbeanInterfaceType}, |
bfa2bef7517c
6323980: Annotations to simplify MBean development
emcmanus
parents:
687
diff
changeset
|
53 |
* provided that {@code mbeanInterfaceType} is a class constant like |
bfa2bef7517c
6323980: Annotations to simplify MBean development
emcmanus
parents:
687
diff
changeset
|
54 |
* {@code SomeMBean.class}. |
bfa2bef7517c
6323980: Annotations to simplify MBean development
emcmanus
parents:
687
diff
changeset
|
55 |
* @throws IllegalArgumentException if {@code resource} is null or |
bfa2bef7517c
6323980: Annotations to simplify MBean development
emcmanus
parents:
687
diff
changeset
|
56 |
* if it does not implement the class {@code mbeanInterfaceType} or if |
bfa2bef7517c
6323980: Annotations to simplify MBean development
emcmanus
parents:
687
diff
changeset
|
57 |
* that class is not a valid Standard MBean interface. |
bfa2bef7517c
6323980: Annotations to simplify MBean development
emcmanus
parents:
687
diff
changeset
|
58 |
*/ |
bfa2bef7517c
6323980: Annotations to simplify MBean development
emcmanus
parents:
687
diff
changeset
|
59 |
public <T> StandardMBeanSupport(T resource, Class<T> mbeanInterfaceType) |
2 | 60 |
throws NotCompliantMBeanException { |
833
bfa2bef7517c
6323980: Annotations to simplify MBean development
emcmanus
parents:
687
diff
changeset
|
61 |
super(resource, mbeanInterfaceType, (MXBeanMappingFactory) null); |
2 | 62 |
} |
63 |
||
64 |
@Override |
|
687 | 65 |
MBeanIntrospector<Method> getMBeanIntrospector(MXBeanMappingFactory ignored) { |
2 | 66 |
return StandardMBeanIntrospector.getInstance(); |
67 |
} |
|
68 |
||
69 |
@Override |
|
70 |
Object getCookie() { |
|
71 |
return null; |
|
72 |
} |
|
73 |
||
74 |
@Override |
|
75 |
public void register(MBeanServer mbs, ObjectName name) {} |
|
76 |
||
77 |
@Override |
|
78 |
public void unregister() {} |
|
79 |
||
80 |
/* Standard MBeans that are NotificationBroadcasters can return a different |
|
81 |
* MBeanNotificationInfo[] every time getMBeanInfo() is called, so we have |
|
82 |
* to reconstruct this MBeanInfo if necessary. |
|
83 |
*/ |
|
84 |
@Override |
|
85 |
public MBeanInfo getMBeanInfo() { |
|
86 |
MBeanInfo mbi = super.getMBeanInfo(); |
|
833
bfa2bef7517c
6323980: Annotations to simplify MBean development
emcmanus
parents:
687
diff
changeset
|
87 |
Class<?> resourceClass = getWrappedObject().getClass(); |
bfa2bef7517c
6323980: Annotations to simplify MBean development
emcmanus
parents:
687
diff
changeset
|
88 |
if (!getMBeanInterface().isInterface() || |
bfa2bef7517c
6323980: Annotations to simplify MBean development
emcmanus
parents:
687
diff
changeset
|
89 |
StandardMBeanIntrospector.isDefinitelyImmutableInfo(resourceClass)) |
2 | 90 |
return mbi; |
91 |
return new MBeanInfo(mbi.getClassName(), mbi.getDescription(), |
|
92 |
mbi.getAttributes(), mbi.getConstructors(), |
|
93 |
mbi.getOperations(), |
|
833
bfa2bef7517c
6323980: Annotations to simplify MBean development
emcmanus
parents:
687
diff
changeset
|
94 |
MBeanIntrospector.findNotifications(getWrappedObject()), |
2 | 95 |
mbi.getDescriptor()); |
96 |
} |
|
97 |
} |