Searched refs:MBeanInfo (Results 1 - 25 of 74) sorted by relevance

123

/openjdk7/jdk/test/javax/management/MBeanInfo/
H A DEqualExceptionTest.java42 MBeanInfo mbi1 = new MBeanInfo("MyClass","",null,null,null,null);
43 MBeanInfo mbi2 = new MBeanInfo("MyClass",null,null,null,null,null);
47 MBeanInfo mbi3 = new MBeanInfo("MyClass","",null,null,null,null);
48 MBeanInfo mbi4 = new MBeanInfo(null,null,null,null,null,null);
H A DSerializationTest.java52 MBeanInfo mi1 = new MBeanInfo("",
63 MBeanInfo mi2 = new MBeanInfo("",
74 MBeanInfo mi3 = new MBeanInfo("",
H A DNullInfoArraysTest.java27 * @summary Test that an MBeanInfo works even if it is deserialized from
56 MBeanInfo mbi = (MBeanInfo) ois.readObject();
87 writeSerial(w, new MBeanInfo(null, null, null, null, null, null));
H A DMBeanInfoEqualsTest.java27 * @summary Test that MBeanInfo.equals works even for mutable subclasses
34 /* Test that MBeanInfo and its referenced classes implement the equals
203 static final MBeanInfo
204 i1a = new MBeanInfo("a.b.c", "an MBean info", xa1a, xc1a, xo1a, xn1a),
205 i1b = new MBeanInfo("a.b.c", "an MBean info", xa1a, xc1a, xo1a, xn1a),
206 i1c = new MBeanInfo("a.b.c", "an MBean info", xa1b, xc1b, xo1b, xn1b),
213 i2a = new MBeanInfo("a.b.cc", "an MBean info", xa1a, xc1a, xo1a, xn1a),
214 i2b = new MBeanInfo(i2a.getClassName(), i2a.getDescription(),
217 i3 = new MBeanInfo("a.b.c", "another MBean info", xa1a, xc1a, xo1a,
219 i4 = new MBeanInfo("
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DStandardMBeanSupport.java30 import javax.management.MBeanInfo;
81 * to reconstruct this MBeanInfo if necessary.
84 public MBeanInfo getMBeanInfo() {
85 MBeanInfo mbi = super.getMBeanInfo();
89 return new MBeanInfo(mbi.getClassName(), mbi.getDescription(),
H A DMBeanIntrospector.java48 import javax.management.MBeanInfo;
83 * MBeanInfo for this type of MBean.
193 MBeanInfo mbeanInfo =
208 * Make the MBeanInfo skeleton for the given MBean interface using
209 * the given analyzer. This will never be the MBeanInfo of any real
212 * into such an MBeanInfo, and its Descriptor can be the basis for
213 * the MBeanInfo's Descriptor.
215 private MBeanInfo makeInterfaceMBeanInfo(Class<?> mbeanInterface,
316 /** A visitor that constructs the per-interface MBeanInfo. */
337 /** Make an MBeanInfo base
[all...]
H A DMBeanServerDelegateImpl.java37 import javax.management.MBeanInfo;
97 private final MBeanInfo delegateInfo;
102 new MBeanInfo("javax.management.MBeanServerDelegate",
312 * Provides the MBeanInfo describing the MBeanServerDelegate.
314 * @return The MBeanInfo describing the MBeanServerDelegate.
317 public MBeanInfo getMBeanInfo() {
H A DMBeanSupport.java34 import javax.management.MBeanInfo;
64 * The PerInterface includes an MBeanInfo. This contains the
68 * the interface. This MBeanInfo can never be the MBeanInfo for any
69 * actual MBean, because an MBeanInfo's getClassName() is the name of
71 * Furthermore a real MBeanInfo may need to add constructors and/or
72 * notifications to the MBeanInfo.
91 * that that class implements to the MBeanInfo for that class and
96 * The MBeanInfo in this second cache will be the MBeanInfo fro
[all...]
/openjdk7/jdk/test/javax/management/Introspector/
H A DIdenticalMBeanInfoTest.java27 * @summary Check that MBeans with the same class have identical MBeanInfo
40 Standard MBeans of the same type should have different MBeanInfo
44 cannot have the same MBeanInfo because the MBeanInfo includes the
104 MBeanInfo mbi1 = mbs.getMBeanInfo(on1);
105 MBeanInfo mbi2 = mbs.getMBeanInfo(on2);
106 MBeanInfo mbi3 = mbs.getMBeanInfo(on3);
107 MBeanInfo mbi4 = mbs.getMBeanInfo(on4);
108 MBeanInfo mbi5 = mbs.getMBeanInfo(on5);
112 "MBeanInfo");
[all...]
H A DUnregisterMBeanExceptionTest.java42 import javax.management.MBeanInfo;
80 public MBeanInfo getMBeanInfo() {
84 return new MBeanInfo(this.getClass().getName(), "Test",
H A DImmutableNotificationInfoTest.java35 import javax.management.MBeanInfo;
89 MBeanInfo mbi = mbs.getMBeanInfo(on);
H A DGetMBeanInfoExceptionTest.java41 import javax.management.MBeanInfo;
80 public MBeanInfo getMBeanInfo() {
/openjdk7/jdk/src/share/classes/javax/management/
H A DDynamicMBean.java114 * Provides the exposed attributes and actions of the Dynamic MBean using an MBeanInfo object.
116 * @return An instance of <CODE>MBeanInfo</CODE> allowing all attributes and actions
120 public MBeanInfo getMBeanInfo();
H A DStandardMBean.java72 * custom descriptions and names for the {@link MBeanInfo} returned by
137 * The cached MBeanInfo.
139 private volatile MBeanInfo cachedMBeanInfo;
409 * Get the {@link MBeanInfo} for this MBean.
416 * retrieve the cached MBeanInfo for this MBean, if any. If the
417 * MBeanInfo returned by {@link #getCachedMBeanInfo()} is not null,
419 * Otherwise, this method builds a default MBeanInfo for this MBean,
422 * While building the MBeanInfo, this method calls the customization
425 * Finally, it calls {@link #cacheMBeanInfo(javax.management.MBeanInfo)
426 * cacheMBeanInfo()} in order to cache the new MBeanInfo
[all...]
H A DMBeanInfo.java48 * <p id="info-changed">Usually the {@code MBeanInfo} for any given MBean does
50 * {@code MBeanInfo} and in that case it is recommended that they emit a {@link
53 * userData} that is the new {@code MBeanInfo}. This is not required, but
57 * MBeanInfo} {@link Descriptor}.</p>
59 * <p>The contents of the <code>MBeanInfo</code> for a Dynamic MBean
64 * <p>The contents of the <code>MBeanInfo</code> for a Standard MBean
98 * <p>The remaining details of the <code>MBeanInfo</code> for a
106 public class MBeanInfo implements Cloneable, Serializable, DescriptorRead { class in inherits:Cloneable,Serializable,DescriptorRead
151 * getters of MBeanInfo. Obviously true for MBeanInfo itsel
185 public MBeanInfo(String className, method in class:MBeanInfo
223 public MBeanInfo(String className, method in class:MBeanInfo
[all...]
H A DMBeanNotificationInfo.java72 /** @see MBeanInfo#arrayGettersSafe */
121 MBeanInfo.arrayGettersSafe(this.getClass(),
/openjdk7/jdk/test/javax/management/mxbean/
H A DStandardMBeanOverrideTest.java27 * @summary Test the correctness of immutableInfo field in MBeanInfo descriptor
90 protected void cacheMBeanInfo(MBeanInfo info) {
101 protected MBeanInfo getCachedMBeanInfo() {
112 public MBeanInfo getMBeanInfo() {
144 protected void cacheMBeanInfo(MBeanInfo info) {
156 protected MBeanInfo getCachedMBeanInfo() {
168 public MBeanInfo getMBeanInfo() {
213 MBeanInfo mbi = mbs.getMBeanInfo(on);
215 echo("MBeanInfo descriptor = " + d);
H A DOperationImpactTest.java50 MBeanInfo mbi = mbs.getMBeanInfo(on);
H A DTypeNameTest.java38 import javax.management.MBeanInfo;
77 MBeanInfo mbi = mbs.getMBeanInfo(name);
/openjdk7/jdk/test/javax/management/security/
H A DAvoidGetMBeanInfoCallsTest.java42 import javax.management.MBeanInfo;
85 public MBeanInfo getMBeanInfo() {
87 return new MBeanInfo(Test.class.getName(),
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/org/glassfish/gmbal/
H A DGmbalMBeanNOPImpl.java35 import javax.management.MBeanInfo;
74 public MBeanInfo getMBeanInfo() {
/openjdk7/jdk/test/java/lang/management/MemoryMXBean/
H A DGetMBeanInfo.java46 MBeanInfo minfo = mbs.getMBeanInfo(objName);
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DXSheet.java39 import javax.management.MBeanInfo;
204 SwingWorker<MBeanInfo, Void> sw = new SwingWorker<MBeanInfo, Void>() {
206 public MBeanInfo doInBackground() throws InstanceNotFoundException,
213 MBeanInfo mbi = get();
230 System.err.println("Couldn't get MBeanInfo for MBean [" +
256 mbeanAttributes.loadAttributes(mbean, new MBeanInfo(
323 new MBeanInfo(null, null, null, null,
363 SwingWorker<MBeanInfo,Void> sw = new SwingWorker<MBeanInfo,Voi
[all...]
/openjdk7/jdk/test/javax/management/MustBeValidMBeanInfo/
H A DMustBeValidCommand.java27 * @summary Test that MBeanInfo classes no longer throw an
36 import javax.management.MBeanInfo;
190 System.out.println("Create an MBeanInfo: " + mbeanclasses[i][0]);
191 final MBeanInfo mbi =
192 new MBeanInfo(mbeanclasses[i][1],mbeanclasses[i][0],
198 System.out.println("All MBeanInfo successfuly created!");
/openjdk7/jdk/test/javax/management/standardmbean/
H A DDeadlockTest.java41 public MBeanInfo getCachedMBeanInfo() {
45 public void cacheMBeanInfo(MBeanInfo mi) {

Completed in 601 milliseconds

123