1 22 package org.jboss.management.j2ee.cluster; 23 24 27 public interface HAManagementServiceMBean extends org.jboss.system.ServiceMBean 28 { 29 30 java.lang.Object getAttribute(javax.management.ObjectName pName, java.lang.String pAttribute) 31 throws javax.management.MBeanException , javax.management.AttributeNotFoundException , 32 javax.management.InstanceNotFoundException , javax.management.ReflectionException , java.rmi.RemoteException ; 33 34 javax.management.AttributeList getAttributes(javax.management.ObjectName pName, java.lang.String [] pAttributes) 35 throws javax.management.InstanceNotFoundException , javax.management.ReflectionException , 36 java.rmi.RemoteException ; 37 38 java.lang.String getDefaultDomain() throws java.rmi.RemoteException ; 39 40 java.lang.Integer getMBeanCount() throws java.rmi.RemoteException ; 41 42 javax.management.MBeanInfo getMBeanInfo(javax.management.ObjectName pName) 43 throws javax.management.IntrospectionException , javax.management.InstanceNotFoundException , 44 javax.management.ReflectionException , java.rmi.RemoteException ; 45 46 javax.management.j2ee.ListenerRegistration getListenerRegistry() throws java.rmi.RemoteException ; 47 48 java.lang.Object invoke(javax.management.ObjectName pName, java.lang.String pOperationName, 49 java.lang.Object [] pParams, java.lang.String [] pSignature) throws javax.management.InstanceNotFoundException , 50 javax.management.MBeanException , javax.management.ReflectionException , java.rmi.RemoteException ; 51 52 boolean isRegistered(javax.management.ObjectName pName) throws java.rmi.RemoteException ; 53 54 java.util.Set queryNames(javax.management.ObjectName pName, javax.management.QueryExp pQuery) 55 throws java.rmi.RemoteException ; 56 57 void setAttribute(javax.management.ObjectName pName, javax.management.Attribute pAttribute) 58 throws javax.management.AttributeNotFoundException , javax.management.InstanceNotFoundException , 59 javax.management.InvalidAttributeValueException , javax.management.MBeanException , 60 javax.management.ReflectionException , java.rmi.RemoteException ; 61 62 javax.management.AttributeList setAttributes(javax.management.ObjectName pName, 63 javax.management.AttributeList pAttributes) throws javax.management.InstanceNotFoundException , 64 javax.management.ReflectionException , java.rmi.RemoteException ; 65 66 javax.management.ObjectInstance createMBean(java.lang.String pClass, javax.management.ObjectName pName, 67 java.lang.Object [] pParameters, java.lang.String [] pSignature) 68 throws javax.management.InstanceAlreadyExistsException , javax.management.MBeanException , 69 javax.management.MBeanRegistrationException , javax.management.NotCompliantMBeanException , 70 javax.management.ReflectionException , java.rmi.RemoteException ; 71 72 void unregisterMBean(javax.management.ObjectName pName) throws javax.management.InstanceNotFoundException , 73 javax.management.MBeanRegistrationException , java.rmi.RemoteException ; 74 75 void addNotificationListener(javax.management.ObjectName pBroadcaster, javax.management.ObjectName pListener, 76 javax.management.NotificationFilter pFilter, java.lang.Object pHandback) 77 throws javax.management.InstanceNotFoundException , java.rmi.RemoteException ; 78 79 void removeNotificationListener(javax.management.ObjectName pBroadcaster, javax.management.ObjectName pListener) 80 throws javax.management.InstanceNotFoundException , javax.management.ListenerNotFoundException , 81 java.rmi.RemoteException ; 82 83 } 84 | Popular Tags |