Java Code Examples for javax.management.MBeanInfo#getNotifications()
The following examples show how to use
javax.management.MBeanInfo#getNotifications() .
These examples are extracted from open source projects.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source Project: dragonwell8_jdk File: MXBeanInteropTest2.java License: GNU General Public License v2.0 | 6 votes |
private void printMBeanInfo(MBeanInfo mbInfo) { System.out.println("Description " + mbInfo.getDescription()); for (MBeanConstructorInfo ctor : mbInfo.getConstructors()) { System.out.println("Constructor " + ctor.getName()); } for (MBeanAttributeInfo att : mbInfo.getAttributes()) { System.out.println("Attribute " + att.getName() + " [" + att.getType() + "]"); } for (MBeanOperationInfo oper : mbInfo.getOperations()) { System.out.println("Operation " + oper.getName()); } for (MBeanNotificationInfo notif : mbInfo.getNotifications()) { System.out.println("Notification " + notif.getName()); } }
Example 2
Source Project: dragonwell8_jdk File: MXBeanNotifTest.java License: GNU General Public License v2.0 | 6 votes |
private int checkMBeanInfo(MBeanInfo mbi, Descriptor refDescr) { MBeanNotificationInfo[] notifsInfo = mbi.getNotifications(); int res = 0; for (MBeanNotificationInfo mbni : notifsInfo) { if ( mbni.getDescriptor().equals(refDescr) ) { System.out.println("(OK)"); } else { System.out.println("(ERROR) Descriptor of the notification is " + mbni.getDescriptor() + " as we expect " + refDescr); res++; } } return res; }
Example 3
Source Project: TencentKona-8 File: MXBeanInteropTest2.java License: GNU General Public License v2.0 | 6 votes |
private void printMBeanInfo(MBeanInfo mbInfo) { System.out.println("Description " + mbInfo.getDescription()); for (MBeanConstructorInfo ctor : mbInfo.getConstructors()) { System.out.println("Constructor " + ctor.getName()); } for (MBeanAttributeInfo att : mbInfo.getAttributes()) { System.out.println("Attribute " + att.getName() + " [" + att.getType() + "]"); } for (MBeanOperationInfo oper : mbInfo.getOperations()) { System.out.println("Operation " + oper.getName()); } for (MBeanNotificationInfo notif : mbInfo.getNotifications()) { System.out.println("Notification " + notif.getName()); } }
Example 4
Source Project: TencentKona-8 File: MXBeanNotifTest.java License: GNU General Public License v2.0 | 6 votes |
private int checkMBeanInfo(MBeanInfo mbi, Descriptor refDescr) { MBeanNotificationInfo[] notifsInfo = mbi.getNotifications(); int res = 0; for (MBeanNotificationInfo mbni : notifsInfo) { if ( mbni.getDescriptor().equals(refDescr) ) { System.out.println("(OK)"); } else { System.out.println("(ERROR) Descriptor of the notification is " + mbni.getDescriptor() + " as we expect " + refDescr); res++; } } return res; }
Example 5
Source Project: openjdk-jdk8u File: MXBeanInteropTest2.java License: GNU General Public License v2.0 | 6 votes |
private void printMBeanInfo(MBeanInfo mbInfo) { System.out.println("Description " + mbInfo.getDescription()); for (MBeanConstructorInfo ctor : mbInfo.getConstructors()) { System.out.println("Constructor " + ctor.getName()); } for (MBeanAttributeInfo att : mbInfo.getAttributes()) { System.out.println("Attribute " + att.getName() + " [" + att.getType() + "]"); } for (MBeanOperationInfo oper : mbInfo.getOperations()) { System.out.println("Operation " + oper.getName()); } for (MBeanNotificationInfo notif : mbInfo.getNotifications()) { System.out.println("Notification " + notif.getName()); } }
Example 6
Source Project: openjdk-jdk8u File: MXBeanNotifTest.java License: GNU General Public License v2.0 | 6 votes |
private int checkMBeanInfo(MBeanInfo mbi, Descriptor refDescr) { MBeanNotificationInfo[] notifsInfo = mbi.getNotifications(); int res = 0; for (MBeanNotificationInfo mbni : notifsInfo) { if ( mbni.getDescriptor().equals(refDescr) ) { System.out.println("(OK)"); } else { System.out.println("(ERROR) Descriptor of the notification is " + mbni.getDescriptor() + " as we expect " + refDescr); res++; } } return res; }
Example 7
Source Project: openjdk-jdk8u-backup File: MXBeanInteropTest2.java License: GNU General Public License v2.0 | 6 votes |
private void printMBeanInfo(MBeanInfo mbInfo) { System.out.println("Description " + mbInfo.getDescription()); for (MBeanConstructorInfo ctor : mbInfo.getConstructors()) { System.out.println("Constructor " + ctor.getName()); } for (MBeanAttributeInfo att : mbInfo.getAttributes()) { System.out.println("Attribute " + att.getName() + " [" + att.getType() + "]"); } for (MBeanOperationInfo oper : mbInfo.getOperations()) { System.out.println("Operation " + oper.getName()); } for (MBeanNotificationInfo notif : mbInfo.getNotifications()) { System.out.println("Notification " + notif.getName()); } }
Example 8
Source Project: openjdk-jdk8u-backup File: MXBeanNotifTest.java License: GNU General Public License v2.0 | 6 votes |
private int checkMBeanInfo(MBeanInfo mbi, Descriptor refDescr) { MBeanNotificationInfo[] notifsInfo = mbi.getNotifications(); int res = 0; for (MBeanNotificationInfo mbni : notifsInfo) { if ( mbni.getDescriptor().equals(refDescr) ) { System.out.println("(OK)"); } else { System.out.println("(ERROR) Descriptor of the notification is " + mbni.getDescriptor() + " as we expect " + refDescr); res++; } } return res; }
Example 9
Source Project: openjdk-jdk9 File: MXBeanInteropTest2.java License: GNU General Public License v2.0 | 6 votes |
private void printMBeanInfo(MBeanInfo mbInfo) { System.out.println("Description " + mbInfo.getDescription()); for (MBeanConstructorInfo ctor : mbInfo.getConstructors()) { System.out.println("Constructor " + ctor.getName()); } for (MBeanAttributeInfo att : mbInfo.getAttributes()) { System.out.println("Attribute " + att.getName() + " [" + att.getType() + "]"); } for (MBeanOperationInfo oper : mbInfo.getOperations()) { System.out.println("Operation " + oper.getName()); } for (MBeanNotificationInfo notif : mbInfo.getNotifications()) { System.out.println("Notification " + notif.getName()); } }
Example 10
Source Project: openjdk-jdk9 File: MXBeanNotifTest.java License: GNU General Public License v2.0 | 6 votes |
private int checkMBeanInfo(MBeanInfo mbi, Descriptor refDescr) { MBeanNotificationInfo[] notifsInfo = mbi.getNotifications(); int res = 0; for (MBeanNotificationInfo mbni : notifsInfo) { if ( mbni.getDescriptor().equals(refDescr) ) { System.out.println("(OK)"); } else { System.out.println("(ERROR) Descriptor of the notification is " + mbni.getDescriptor() + " as we expect " + refDescr); res++; } } return res; }
Example 11
Source Project: jdk8u-jdk File: MXBeanInteropTest2.java License: GNU General Public License v2.0 | 6 votes |
private void printMBeanInfo(MBeanInfo mbInfo) { System.out.println("Description " + mbInfo.getDescription()); for (MBeanConstructorInfo ctor : mbInfo.getConstructors()) { System.out.println("Constructor " + ctor.getName()); } for (MBeanAttributeInfo att : mbInfo.getAttributes()) { System.out.println("Attribute " + att.getName() + " [" + att.getType() + "]"); } for (MBeanOperationInfo oper : mbInfo.getOperations()) { System.out.println("Operation " + oper.getName()); } for (MBeanNotificationInfo notif : mbInfo.getNotifications()) { System.out.println("Notification " + notif.getName()); } }
Example 12
Source Project: jdk8u-jdk File: MXBeanNotifTest.java License: GNU General Public License v2.0 | 6 votes |
private int checkMBeanInfo(MBeanInfo mbi, Descriptor refDescr) { MBeanNotificationInfo[] notifsInfo = mbi.getNotifications(); int res = 0; for (MBeanNotificationInfo mbni : notifsInfo) { if ( mbni.getDescriptor().equals(refDescr) ) { System.out.println("(OK)"); } else { System.out.println("(ERROR) Descriptor of the notification is " + mbni.getDescriptor() + " as we expect " + refDescr); res++; } } return res; }
Example 13
Source Project: jdk8u_jdk File: MXBeanInteropTest2.java License: GNU General Public License v2.0 | 6 votes |
private void printMBeanInfo(MBeanInfo mbInfo) { System.out.println("Description " + mbInfo.getDescription()); for (MBeanConstructorInfo ctor : mbInfo.getConstructors()) { System.out.println("Constructor " + ctor.getName()); } for (MBeanAttributeInfo att : mbInfo.getAttributes()) { System.out.println("Attribute " + att.getName() + " [" + att.getType() + "]"); } for (MBeanOperationInfo oper : mbInfo.getOperations()) { System.out.println("Operation " + oper.getName()); } for (MBeanNotificationInfo notif : mbInfo.getNotifications()) { System.out.println("Notification " + notif.getName()); } }
Example 14
Source Project: jdk8u_jdk File: MXBeanNotifTest.java License: GNU General Public License v2.0 | 6 votes |
private int checkMBeanInfo(MBeanInfo mbi, Descriptor refDescr) { MBeanNotificationInfo[] notifsInfo = mbi.getNotifications(); int res = 0; for (MBeanNotificationInfo mbni : notifsInfo) { if ( mbni.getDescriptor().equals(refDescr) ) { System.out.println("(OK)"); } else { System.out.println("(ERROR) Descriptor of the notification is " + mbni.getDescriptor() + " as we expect " + refDescr); res++; } } return res; }
Example 15
Source Project: activemq-artemis File: AbstractControl.java License: Apache License 2.0 | 5 votes |
@Override public MBeanInfo getMBeanInfo() { if (AuditLogger.isEnabled()) { AuditLogger.getMBeanInfo(this); } MBeanInfo info = super.getMBeanInfo(); return new MBeanInfo(info.getClassName(), info.getDescription(), fillMBeanAttributeInfo(), info.getConstructors(), fillMBeanOperationInfo(), info.getNotifications()); }
Example 16
Source Project: cacheonix-core File: StandardAgent.java License: GNU Lesser General Public License v2.1 | 4 votes |
private void printMBeanInfo(ObjectName mbeanObjectName, String mbeanName) { echo("\n>>> Getting the management information for the "+ mbeanName +" MBean"); echo(" using the getMBeanInfo method of the MBeanServer"); sleep(1000); MBeanInfo info = null; try { info = server.getMBeanInfo(mbeanObjectName); } catch (Exception e) { echo("\t!!! Could not get MBeanInfo object for "+ mbeanName +" !!!"); e.printStackTrace(); return; } echo("\nCLASSNAME: \t"+ info.getClassName()); echo("\nDESCRIPTION: \t"+ info.getDescription()); echo("\nATTRIBUTES"); MBeanAttributeInfo[] attrInfo = info.getAttributes(); if (attrInfo.length>0) { for(int i=0; i<attrInfo.length; i++) { echo(" ** NAME: \t"+ attrInfo[i].getName()); echo(" DESCR: \t"+ attrInfo[i].getDescription()); echo(" TYPE: \t"+ attrInfo[i].getType() + "\tREAD: "+ attrInfo[i].isReadable() + "\tWRITE: "+ attrInfo[i].isWritable()); } } else echo(" ** No attributes **"); echo("\nCONSTRUCTORS"); MBeanConstructorInfo[] constrInfo = info.getConstructors(); for(int i=0; i<constrInfo.length; i++) { echo(" ** NAME: \t"+ constrInfo[i].getName()); echo(" DESCR: \t"+ constrInfo[i].getDescription()); echo(" PARAM: \t"+ constrInfo[i].getSignature().length +" parameter(s)"); } echo("\nOPERATIONS"); MBeanOperationInfo[] opInfo = info.getOperations(); if (opInfo.length>0) { for(int i=0; i<opInfo.length; i++) { echo(" ** NAME: \t"+ opInfo[i].getName()); echo(" DESCR: \t"+ opInfo[i].getDescription()); echo(" PARAM: \t"+ opInfo[i].getSignature().length +" parameter(s)"); } } else echo(" ** No operations ** "); echo("\nNOTIFICATIONS"); MBeanNotificationInfo[] notifInfo = info.getNotifications(); if (notifInfo.length>0) { for(int i=0; i<notifInfo.length; i++) { echo(" ** NAME: \t"+ notifInfo[i].getName()); echo(" DESCR: \t"+ notifInfo[i].getDescription()); } } else echo(" ** No notifications **"); }
Example 17
Source Project: cacheonix-core File: DynamicAgent.java License: GNU Lesser General Public License v2.1 | 4 votes |
private void printMBeanInfo(ObjectName mbeanObjectName, String mbeanName) { echo("\n>>> Getting the management information for the "+ mbeanName +" MBean"); echo(" using the getMBeanInfo method of the MBeanServer"); sleep(1000); MBeanInfo info = null; try { info = server.getMBeanInfo(mbeanObjectName); } catch (Exception e) { echo("\t!!! Could not get MBeanInfo object for "+ mbeanName +" !!!"); e.printStackTrace(); return; } echo("\nCLASSNAME: \t"+ info.getClassName()); echo("\nDESCRIPTION: \t"+ info.getDescription()); echo("\nATTRIBUTES"); MBeanAttributeInfo[] attrInfo = info.getAttributes(); if (attrInfo.length>0) { for(int i=0; i<attrInfo.length; i++) { echo(" ** NAME: \t"+ attrInfo[i].getName()); echo(" DESCR: \t"+ attrInfo[i].getDescription()); echo(" TYPE: \t"+ attrInfo[i].getType() + "\tREAD: "+ attrInfo[i].isReadable() + "\tWRITE: "+ attrInfo[i].isWritable()); } } else echo(" ** No attributes **"); echo("\nCONSTRUCTORS"); MBeanConstructorInfo[] constrInfo = info.getConstructors(); for(int i=0; i<constrInfo.length; i++) { echo(" ** NAME: \t"+ constrInfo[i].getName()); echo(" DESCR: \t"+ constrInfo[i].getDescription()); echo(" PARAM: \t"+ constrInfo[i].getSignature().length +" parameter(s)"); } echo("\nOPERATIONS"); MBeanOperationInfo[] opInfo = info.getOperations(); if (opInfo.length>0) { for(int i=0; i<opInfo.length; i++) { echo(" ** NAME: \t"+ opInfo[i].getName()); echo(" DESCR: \t"+ opInfo[i].getDescription()); echo(" PARAM: \t"+ opInfo[i].getSignature().length +" parameter(s)"); } } else echo(" ** No operations ** "); echo("\nNOTIFICATIONS"); MBeanNotificationInfo[] notifInfo = info.getNotifications(); if (notifInfo.length>0) { for(int i=0; i<notifInfo.length; i++) { echo(" ** NAME: \t"+ notifInfo[i].getName()); echo(" DESCR: \t"+ notifInfo[i].getDescription()); } } else echo(" ** No notifications **"); }
Example 18
Source Project: cacheonix-core File: ModelAgent.java License: GNU Lesser General Public License v2.1 | 4 votes |
public void printLocalMBeanInfo(MBeanInfo info) { echo("\nCLASSNAME: \t"+ info.getClassName()); echo("\nDESCRIPTION: \t"+ info.getDescription()); echo("\nATTRIBUTES"); MBeanAttributeInfo[] attrInfo = info.getAttributes(); if (attrInfo.length>0) { for (int i=0; i<attrInfo.length; i++) { echo(" ** NAME: \t"+ attrInfo[i].getName()); echo(" DESCR: \t"+ attrInfo[i].getDescription()); echo(" TYPE: \t"+ attrInfo[i].getType() + "\tREAD: "+ attrInfo[i].isReadable() + "\tWRITE: "+ attrInfo[i].isWritable()); echo(" DESCRIPTOR: \t" + (((ModelMBeanAttributeInfo)attrInfo[i]).getDescriptor()).toString()); } } else echo(" ** No attributes **"); echo("\nCONSTRUCTORS"); MBeanConstructorInfo[] constrInfo = info.getConstructors(); for (int i=0; i<constrInfo.length; i++) { echo(" ** NAME: \t"+ constrInfo[i].getName()); echo(" DESCR: \t"+ constrInfo[i].getDescription()); echo(" PARAM: \t"+ constrInfo[i].getSignature().length +" parameter(s)"); echo(" DESCRIPTOR: \t" + (((ModelMBeanConstructorInfo)constrInfo[i]).getDescriptor()).toString()); } echo("\nOPERATIONS"); MBeanOperationInfo[] opInfo = info.getOperations(); if (opInfo.length>0) { for (int i=0; i<opInfo.length; i++) { echo(" ** NAME: \t"+ opInfo[i].getName()); echo(" DESCR: \t"+ opInfo[i].getDescription()); echo(" PARAM: \t"+ opInfo[i].getSignature().length +" parameter(s)"); echo(" DESCRIPTOR: \t" + (((ModelMBeanOperationInfo)opInfo[i]).getDescriptor()).toString()); } } else echo(" ** No operations ** "); echo("\nNOTIFICATIONS"); MBeanNotificationInfo[] notifInfo = info.getNotifications(); if (notifInfo.length>0) { for (int i=0; i<notifInfo.length; i++) { echo(" ** NAME: \t"+ notifInfo[i].getName()); echo(" DESCR: \t"+ notifInfo[i].getDescription()); echo(" DESCRIPTOR: \t" + (((ModelMBeanNotificationInfo) notifInfo[i]).getDescriptor()).toString()); } } else echo(" ** No notifications **"); }
Example 19
Source Project: cacheonix-core File: RelationAgent.java License: GNU Lesser General Public License v2.1 | 4 votes |
private void printMBeanInfo(ObjectName mbeanObjectName, String mbeanName) { echo("\n>>> GETTING THE MANAGEMENT INFORMATION for the "+ mbeanName +" MBean"); echo("\tusing the getMBeanInfo method of the MBeanServer"); sleep(1000); MBeanInfo info = null; try { info = server.getMBeanInfo(mbeanObjectName); } catch (Exception e) { echo("\t!!! Could not get MBeanInfo object for "+ mbeanName +" !!!"); printException(e); } echo("\nCLASSNAME: \t"+ info.getClassName()); echo("\nDESCRIPTION: \t"+ info.getDescription()); echo("\nATTRIBUTES"); MBeanAttributeInfo[] attrInfo = info.getAttributes(); if (attrInfo.length>0) { for(int i=0; i< attrInfo.length; i++) { echo(" ** NAME: \t"+ attrInfo[i].getName()); echo(" DESCR: \t"+ attrInfo[i].getDescription()); echo(" TYPE: \t"+ attrInfo[i].getType() + "\tREAD: "+ attrInfo[i].isReadable() + "\tWRITE: "+ attrInfo[i].isWritable()); } } else echo(" ** No attributes **"); echo("\nCONSTRUCTORS"); MBeanConstructorInfo[] constrInfo = info.getConstructors(); for(int i=0; i< constrInfo.length; i++) { echo(" ** NAME: \t"+ constrInfo[i].getName()); echo(" DESCR: \t"+ constrInfo[i].getDescription()); echo(" PARAM: \t"+ constrInfo[i].getSignature().length +" parameter(s)"); } echo("\nOPERATIONS"); MBeanOperationInfo[] opInfo = info.getOperations(); if (opInfo.length>0) { for(int i=0; i< opInfo.length; i++) { echo(" ** NAME: \t"+ opInfo[i].getName()); echo(" DESCR: \t"+ opInfo[i].getDescription()); echo(" PARAM: \t"+ opInfo[i].getSignature().length +" parameter(s)"); } } else echo(" ** No operations ** "); echo("\nNOTIFICATIONS"); MBeanNotificationInfo[] notifInfo = info.getNotifications(); if (notifInfo.length>0) { for(int i=0; i< notifInfo.length; i++) { echo(" ** NAME: \t"+ notifInfo[i].getName()); echo(" DESCR: \t"+ notifInfo[i].getDescription()); } } else echo(" ** No notifications **"); }