Uses of Class
javax.management.ObjectName

Packages that use ObjectName
javax.management   
javax.management.loading   
javax.management.modelmbean   
javax.management.monitor   
javax.management.relation   
javax.management.timer   
org.huihoo.jfox.jmx   
org.huihoo.jfox.jmx.adaptor.http   
org.huihoo.jfox.jmx.queries   
 

Uses of ObjectName in javax.management
 

Fields in javax.management declared as ObjectName
protected static ObjectName MBeanServerDelegate.delegateObjectName
           
 

Methods in javax.management that return ObjectName
 ObjectName ObjectInstance.getObjectName()
          Returns the object name part.
 ObjectName MBeanServerNotification.getMBeanName()
          Returns the object name of the MBean that caused the notification.
 ObjectName StandardMBean.preRegister(MBeanServer server, ObjectName name)
           
 ObjectName MBeanRegistration.preRegister(MBeanServer server, ObjectName name)
          Allows the MBean to perform any operations it needs before being registered in the MBean server.
 

Methods in javax.management with parameters of type ObjectName
 ObjectInstance MBeanServerConnection.createMBean(java.lang.String className, ObjectName name)
          Instantiates and registers an MBean in the MBean server.
 ObjectInstance MBeanServerConnection.createMBean(java.lang.String className, ObjectName name, ObjectName loaderName)
          Instantiates and registers an MBean in the MBean server.
 ObjectInstance MBeanServerConnection.createMBean(java.lang.String className, ObjectName name, java.lang.Object[] params, java.lang.String[] signature)
          Instantiates and registers an MBean in the MBean server.
 ObjectInstance MBeanServerConnection.createMBean(java.lang.String className, ObjectName name, ObjectName loaderName, java.lang.Object[] params, java.lang.String[] signature)
          Instantiates and registers an MBean in the MBean server.
 void MBeanServerConnection.unregisterMBean(ObjectName name)
          Unregisters an MBean from the MBean server.
 ObjectInstance MBeanServerConnection.getObjectInstance(ObjectName name)
          Gets the ObjectInstance for a given MBean registered with the MBean server.
 java.util.Set MBeanServerConnection.queryMBeans(ObjectName name, QueryExp query)
          Gets MBeans controlled by the MBean server.
 java.util.Set MBeanServerConnection.queryNames(ObjectName name, QueryExp query)
          Gets the names of MBeans controlled by the MBean server.
 boolean MBeanServerConnection.isRegistered(ObjectName name)
          Checks whether an MBean, identified by its object name, is already registered with the MBean server.
 java.lang.Object MBeanServerConnection.getAttribute(ObjectName name, java.lang.String attribute)
          Gets the value of a specific attribute of a named MBean.
 AttributeList MBeanServerConnection.getAttributes(ObjectName name, java.lang.String[] attributes)
          Enables the values of several attributes of a named MBean.
 void MBeanServerConnection.setAttribute(ObjectName name, Attribute attribute)
          Sets the value of a specific attribute of a named MBean.
 AttributeList MBeanServerConnection.setAttributes(ObjectName name, AttributeList attributes)
          Sets the values of several attributes of a named MBean.
 java.lang.Object MBeanServerConnection.invoke(ObjectName name, java.lang.String operationName, java.lang.Object[] params, java.lang.String[] signature)
          Invokes an operation on an MBean.
 void MBeanServerConnection.addNotificationListener(ObjectName name, NotificationListener listener, NotificationFilter filter, java.lang.Object handback)
          Adds a listener to a registered MBean. A notification emitted by an MBean will be forwarded by the MBeanServer to the listener.
 void MBeanServerConnection.addNotificationListener(ObjectName name, ObjectName listener, NotificationFilter filter, java.lang.Object handback)
          Adds a listener to a registered MBean. A notification emitted by an MBean will be forwarded by the MBeanServer to the listener.
 void MBeanServerConnection.removeNotificationListener(ObjectName name, ObjectName listener)
          Removes a listener from a registered MBean.
 void MBeanServerConnection.removeNotificationListener(ObjectName name, ObjectName listener, NotificationFilter filter, java.lang.Object handback)
          Removes a listener from a registered MBean. The MBean must have a listener that exactly matches the given listener, filter, and handback parameters.
 void MBeanServerConnection.removeNotificationListener(ObjectName name, NotificationListener listener)
          Removes a listener from a registered MBean. If the listener is registered more than once, perhaps with different filters or callbacks, this method will remove all those registrations.
 void MBeanServerConnection.removeNotificationListener(ObjectName name, NotificationListener listener, NotificationFilter filter, java.lang.Object handback)
          Removes a listener from a registered MBean. The MBean must have a listener that exactly matches the given listener, filter, and handback parameters.
 MBeanInfo MBeanServerConnection.getMBeanInfo(ObjectName name)
          This method discovers the attributes and operations that an MBean exposes for management.
 boolean MBeanServerConnection.isInstanceOf(ObjectName name, java.lang.String className)
          Returns true if the MBean specified is an instance of the specified class, false otherwise. If name does not name an MBean, this method throws InstanceNotFoundException. Otherwise, let
X be the MBean named by name,
L be the ClassLoader of X,
N be the class name in X's MBeanInfo. If N equals className, the result is true. Otherwise, if L successfully loads both N and className, and the second class is assignable from the first, the result is true. Otherwise, the result is false.
 ValueExp ValueExp.apply(ObjectName name)
          Applies the ValueExp on a MBean.
 boolean QueryExp.apply(ObjectName name)
          Applies the QueryExp on an MBean.
 ValueExp StringValueExp.apply(ObjectName name)
          Applies the ValueExp on a MBean.
 ValueExp AttributeValueExp.apply(ObjectName name)
          Applies the AttributeValueExp on an MBean.
protected  java.lang.Object AttributeValueExp.getAttribute(ObjectName objectname)
           
 ObjectName StandardMBean.preRegister(MBeanServer server, ObjectName name)
           
static java.lang.Object MBeanServerInvocationHandler.newProxyInstance(MBeanServerConnection connection, ObjectName objectName, java.lang.Class interfaceClass, boolean isNotificationBroadcaster)
          Return a proxy that implements the given interface by forwarding its methods through the given MBean server to the named MBean. This method is equivalent to Proxy.newProxyInstance(interfaceClass.getClassLoader(), interfaces, handler).
 ObjectName MBeanRegistration.preRegister(MBeanServer server, ObjectName name)
          Allows the MBean to perform any operations it needs before being registered in the MBean server.
 java.lang.Object MBeanServer.instantiate(java.lang.String className, ObjectName loaderName)
          Instantiates an object using the class Loader specified by its ObjectName.
 java.lang.Object MBeanServer.instantiate(java.lang.String className, ObjectName loaderName, java.lang.Object[] params, java.lang.String[] signature)
          Instantiates an object.
 ObjectInstance MBeanServer.createMBean(java.lang.String className, ObjectName name)
          Instantiates and registers an MBean in the MBean server.
 ObjectInstance MBeanServer.createMBean(java.lang.String className, ObjectName name, ObjectName loaderName)
          Instantiates and registers an MBean in the MBean server.
 ObjectInstance MBeanServer.createMBean(java.lang.String className, ObjectName name, java.lang.Object[] params, java.lang.String[] signature)
          Instantiates and registers an MBean in the MBean server.
 ObjectInstance MBeanServer.createMBean(java.lang.String className, ObjectName name, ObjectName loaderName, java.lang.Object[] params, java.lang.String[] signature)
          Instantiates and registers an MBean in the MBean server.
 ObjectInstance MBeanServer.registerMBean(java.lang.Object object, ObjectName name)
          Registers a pre-existing object as an MBean with the MBean server.
 void MBeanServer.unregisterMBean(ObjectName name)
          De-registers an MBean from the MBean server.
 ObjectInstance MBeanServer.getObjectInstance(ObjectName name)
          Gets the ObjectInstance for a given MBean registered with the MBean server.
 java.util.Set MBeanServer.queryMBeans(ObjectName name, QueryExp query)
          Gets MBeans controlled by the MBean server.
 java.util.Set MBeanServer.queryNames(ObjectName name, QueryExp query)
          Gets the names of MBeans controlled by the MBean server.
 boolean MBeanServer.isRegistered(ObjectName name)
          Checks whether an MBean, identified by its object name, is already registered with the MBean server.
 java.lang.Object MBeanServer.getAttribute(ObjectName name, java.lang.String attribute)
          Gets the value of a specific attribute of a named MBean.
 AttributeList MBeanServer.getAttributes(ObjectName name, java.lang.String[] attributes)
          Enables the values of several attributes of a named MBean.
 void MBeanServer.setAttribute(ObjectName name, Attribute attribute)
          Sets the value of a specific attribute of a named MBean.
 AttributeList MBeanServer.setAttributes(ObjectName name, AttributeList attributes)
          Sets the values of several attributes of a named MBean.
 java.lang.Object MBeanServer.invoke(ObjectName name, java.lang.String operationName, java.lang.Object[] params, java.lang.String[] signature)
          Invokes an operation on an MBean.
 void MBeanServer.addNotificationListener(ObjectName name, NotificationListener listener, NotificationFilter filter, java.lang.Object handback)
          Enables to add a listener to a registered MBean.
 void MBeanServer.addNotificationListener(ObjectName name, ObjectName listener, NotificationFilter filter, java.lang.Object handback)
          Enables to add a listener to a registered MBean.
 void MBeanServer.removeNotificationListener(ObjectName name, NotificationListener listener)
          Enables to remove a listener from a registered MBean.
 void MBeanServer.removeNotificationListener(ObjectName name, ObjectName listener)
          Enables to remove a listener from a registered MBean.
 MBeanInfo MBeanServer.getMBeanInfo(ObjectName name)
          This method discovers the attributes and operations that an MBean exposes for management.
 boolean MBeanServer.isInstanceOf(ObjectName name, java.lang.String className)
          Returns true if the MBean specified is an instance of the specified class, false otherwise.
 java.lang.ClassLoader MBeanServer.getClassLoaderFor(ObjectName mbeanName)
          Return the ClassLoader that was used for loading the class of the named MBean.
 java.lang.ClassLoader MBeanServer.getClassLoader(ObjectName loaderName)
          Return the named ClassLoader.
 void MBeanServer.removeNotificationListener(ObjectName name, ObjectName listener, NotificationFilter filter, java.lang.Object handback)
          Removes a listener from a registered MBean. The MBean must have a listener that exactly matches the given listener, filter, and handback parameters.
 void MBeanServer.removeNotificationListener(ObjectName name, NotificationListener listener, NotificationFilter filter, java.lang.Object handback)
          Removes a listener from a registered MBean. The MBean must have a listener that exactly matches the given listener, filter, and handback parameters.
 boolean ObjectName.apply(ObjectName name)
           
 

Constructors in javax.management with parameters of type ObjectName
ObjectInstance(ObjectName objectName, java.lang.String className)
          Allows an object instance to be created given an object name and the full class name, including the package name.
MBeanServerNotification(java.lang.String type, java.lang.Object source, long sequenceNumber, ObjectName objectName)
          Creates an MBeanServerNotification object specifying object names of the MBeans that caused the notification and the specified notification type.
MBeanServerInvocationHandler(MBeanServerConnection connection, ObjectName objectName, boolean isNotificationBroadcaster)
          Invocation handler that forwards methods through an MBean server.
MBeanPermission(java.lang.String className, java.lang.String member, ObjectName objectName, java.lang.String action)
          Create a new MBeanPermission object with the specified target name (class name, member, object name) and action. The class name, member and object name parameters define a target name of the form "className#member[objectName]" where each part is optional.
 

Uses of ObjectName in javax.management.loading
 

Methods in javax.management.loading that return ObjectName
 ObjectName MLet.preRegister(MBeanServer server, ObjectName objName)
          get server & objectName & classLoaderRepository
 

Methods in javax.management.loading with parameters of type ObjectName
 ObjectName MLet.preRegister(MBeanServer server, ObjectName objName)
          get server & objectName & classLoaderRepository
 

Uses of ObjectName in javax.management.modelmbean
 

Methods in javax.management.modelmbean that return ObjectName
 ObjectName RequiredModelMBean.preRegister(MBeanServer server, ObjectName name)
           
 

Methods in javax.management.modelmbean with parameters of type ObjectName
 ObjectName RequiredModelMBean.preRegister(MBeanServer server, ObjectName name)
           
 

Uses of ObjectName in javax.management.monitor
 

Methods in javax.management.monitor that return ObjectName
 ObjectName MonitorNotification.getObservedObject()
          Gets the observed object of this monitor notification.
 ObjectName Monitor.preRegister(MBeanServer mbeanserver, ObjectName objectname)
           
 ObjectName[] Monitor.getObservedObjects()
           
 ObjectName[] MonitorMBean.getObservedObjects()
          Returns an array containing the objects being observed.
 

Methods in javax.management.monitor with parameters of type ObjectName
 ObjectName Monitor.preRegister(MBeanServer mbeanserver, ObjectName objectname)
           
abstract  void Monitor.addObservedObject(ObjectName objectName)
           
 boolean Monitor.containsObservedObject(ObjectName objectName)
           
 void Monitor.removeObservedObject(ObjectName objectName)
           
protected  void Monitor.sendNotification(java.lang.String type, long timeStamp, java.lang.String message, java.lang.Object derivedValue, java.lang.Object trigger, ObjectName observedObject)
           
protected  javax.management.monitor.MonitorData Monitor.getMonitorData(ObjectName observedObject)
           
protected abstract  void Monitor.doMonitor(ObjectName observedObject, java.lang.Object value)
           
 java.lang.Number CounterMonitor.getDerivedGauge(ObjectName observedObjectName)
           
 long CounterMonitor.getDerivedGaugeTimeStamp(ObjectName observedObjectName)
           
 java.lang.Number CounterMonitor.getThreshold(ObjectName observedObjectName)
           
protected  void CounterMonitor.doMonitor(ObjectName observedObject, java.lang.Object value)
           
 void CounterMonitor.addObservedObject(ObjectName objectName)
           
 java.lang.String StringMonitor.getDerivedGauge(ObjectName observedObject)
           
 long StringMonitor.getDerivedGaugeTimeStamp(ObjectName observedObject)
           
protected  void StringMonitor.doMonitor(ObjectName observedObject, java.lang.Object value)
           
 void StringMonitor.addObservedObject(ObjectName objectName)
           
 java.lang.Number GaugeMonitorMBean.getDerivedGauge(ObjectName object)
          Gets the derived gauge for the specified MBean.
 long GaugeMonitorMBean.getDerivedGaugeTimeStamp(ObjectName object)
          Gets the derived gauge timestamp for the specified MBean.
 java.lang.Number CounterMonitorMBean.getDerivedGauge(ObjectName object)
          Gets the derived gauge for the specified MBean.
 long CounterMonitorMBean.getDerivedGaugeTimeStamp(ObjectName object)
          Gets the derived gauge timestamp for the specified MBean.
 java.lang.Number CounterMonitorMBean.getThreshold(ObjectName object)
          Gets the threshold value for the specified MBean.
 void MonitorMBean.addObservedObject(ObjectName object)
          Adds the specified object in the set of observed MBeans.
 void MonitorMBean.removeObservedObject(ObjectName object)
          Removes the specified object from the set of observed MBeans.
 boolean MonitorMBean.containsObservedObject(ObjectName object)
          Tests whether the specified object is in the set of observed MBeans.
 java.lang.String StringMonitorMBean.getDerivedGauge(ObjectName object)
          Gets the derived gauge for the specified MBean.
 long StringMonitorMBean.getDerivedGaugeTimeStamp(ObjectName object)
          Gets the derived gauge timestamp for the specified MBean.
 java.lang.Number GaugeMonitor.getDerivedGauge(ObjectName observedObject)
           
 long GaugeMonitor.getDerivedGaugeTimeStamp(ObjectName observedObject)
           
protected  void GaugeMonitor.doMonitor(ObjectName observedObject, java.lang.Object value)
           
 void GaugeMonitor.addObservedObject(ObjectName objectName)
           
 

Uses of ObjectName in javax.management.relation
 

Methods in javax.management.relation that return ObjectName
 ObjectName RelationNotification.getObjectName()
          Returns the ObjectName (if the relation is a MBean, else null) of the created/removed/updated relation
 ObjectName RelationSupport.getRelationServiceName()
          Returns ObjectName of the Relation Service handling the relation
 ObjectName RelationSupport.preRegister(MBeanServer server, ObjectName name)
           
 ObjectName Relation.getRelationServiceName()
          Returns ObjectName of the Relation Service handling the relation
 ObjectName RelationService.isRelationMBean(java.lang.String relationId)
          If the relation is represented by a MBean (created by the user and added as a relation in the Relation Service), returns the ObjectName of the MBean.
 ObjectName RelationService.preRegister(MBeanServer server, ObjectName name)
           
 ObjectName RelationServiceMBean.isRelationMBean(java.lang.String relationId)
          If the relation is represented by a MBean (created by the user and added as a relation in the Relation Service), returns the ObjectName of the MBean.
 

Methods in javax.management.relation with parameters of type ObjectName
 void RelationSupport.handleMBeanUnregistration(ObjectName objectName, java.lang.String roleName)
          Callback used by the Relation Service when a MBean referenced in a role is unregistered.
 ObjectName RelationSupport.preRegister(MBeanServer server, ObjectName name)
           
 void MBeanServerNotificationFilter.disableObjectName(ObjectName objectName)
          Disables MBeanServerNotifications concerning given ObjectName.
 void MBeanServerNotificationFilter.enableObjectName(ObjectName objectName)
          Enables MBeanServerNotifications concerning given ObjectName.
 void Relation.handleMBeanUnregistration(ObjectName objectName, java.lang.String roleName)
          Callback used by the Relation Service when a MBean referenced in a role is unregistered.
 void RelationService.addRelation(ObjectName objectName)
          add a external Relation with it's DEFAULT_OBJECTNAME
 java.util.Map RelationService.findReferencingRelations(ObjectName objectName, java.lang.String relTypeName, java.lang.String roleName)
          Retrieves the relations where a given MBean is referenced.
 java.util.Map RelationService.findAssociatedMBeans(ObjectName objectName, java.lang.String relTypeName, java.lang.String roleName)
          Retrieves the MBeans associated to given one in a relation.
 java.lang.String RelationService.isRelation(ObjectName objectName)
          return relation id (String) or null (if the ObjectName is not a relation handled by the Relation Service)
 ObjectName RelationService.preRegister(MBeanServer server, ObjectName name)
           
 void RelationServiceMBean.addRelation(ObjectName objectName)
          Adds a MBean created by te user (and registered by him in the MBean Server) as a relation in the Relation Service.
 java.lang.String RelationServiceMBean.isRelation(ObjectName objectName)
          Returns the relation id associated to the given ObjectName if the MBean has been added as a relation in the Relation Service.
 java.util.Map RelationServiceMBean.findReferencingRelations(ObjectName mbeanObjectName, java.lang.String relTypeName, java.lang.String roleName)
          Retrieves the relations where a given MBean is referenced.
 java.util.Map RelationServiceMBean.findAssociatedMBeans(ObjectName mbeanObjectName, java.lang.String relTypeName, java.lang.String roleName)
          Retrieves the MBeans associated to given one in a relation.
 

Constructors in javax.management.relation with parameters of type ObjectName
RelationNotification(java.lang.String theNtfType, java.lang.Object theSrcObj, long TheSeqNbr, long theTimeStamp, java.lang.String theMsg, java.lang.String theRelId, java.lang.String theRelTypeName, ObjectName theRelObjName, java.util.List theUnregMBeanList)
          Creates a notification for either a relation creation (RelationSupport object created internally in the Relation Service, or a MBean added as a relation) or for a relation removal from the Relation Service
RelationNotification(java.lang.String theNtfType, java.lang.Object theSrcObj, long TheSeqNbr, long theTimeStamp, java.lang.String theMsg, java.lang.String theRelId, java.lang.String theRelTypeName, ObjectName theRelObjName, java.lang.String theRoleName, java.util.List theNewRoleValue, java.util.List theOldRoleValue)
          Creates a notification for a role update in a relation
RelationSupport(java.lang.String relationId, ObjectName relationServiceObjectName, java.lang.String relationTypeName, RoleList roleList)
          Creates object.
RelationSupport(java.lang.String relationId, ObjectName relationServiceObjectName, MBeanServer mbeanServer, java.lang.String relationTypeName, RoleList roleList)
           
 

Uses of ObjectName in javax.management.timer
 

Methods in javax.management.timer that return ObjectName
 ObjectName Timer.preRegister(MBeanServer mbeanserver, ObjectName objectname)
           
 

Methods in javax.management.timer with parameters of type ObjectName
 ObjectName Timer.preRegister(MBeanServer mbeanserver, ObjectName objectname)
           
 

Uses of ObjectName in org.huihoo.jfox.jmx
 

Methods in org.huihoo.jfox.jmx that return ObjectName
 ObjectName MBeanMetaDataSupport.getObjectName()
           
 ObjectName MBeanMetaData.getObjectName()
           
 ObjectName DynamicMBeanMetaDataSupport.getObjectName()
           
static ObjectName ExtendedMBeanServerDelegate.getObjectName()
           
 

Methods in org.huihoo.jfox.jmx with parameters of type ObjectName
 MBeanMetaData MBeanServerRepositorySupport.get(ObjectName name)
           
 void MBeanServerRepositorySupport.put(ObjectName name, MBeanMetaData metadata)
           
 void MBeanServerRepositorySupport.remove(ObjectName name)
           
 boolean MBeanServerRepositorySupport.contains(ObjectName name)
           
static void PermissionChecker.checkMBeanPermission(java.lang.String classname, java.lang.String member, ObjectName objectName, java.lang.String actions)
           
 java.lang.Object MBeanServerSupport.instantiate(java.lang.String className, ObjectName loaderName)
           
 java.lang.Object MBeanServerSupport.instantiate(java.lang.String className, ObjectName loaderName, java.lang.Object[] params, java.lang.String[] signatures)
           
 ObjectInstance MBeanServerSupport.createMBean(java.lang.String className, ObjectName objectName)
           
 ObjectInstance MBeanServerSupport.createMBean(java.lang.String className, ObjectName objectName, ObjectName loaderName)
           
 ObjectInstance MBeanServerSupport.createMBean(java.lang.String className, ObjectName objectName, java.lang.Object[] params, java.lang.String[] signatures)
           
 ObjectInstance MBeanServerSupport.createMBean(java.lang.String className, ObjectName objectName, ObjectName loaderName, java.lang.Object[] params, java.lang.String[] signatures)
           
 ObjectInstance MBeanServerSupport.registerMBean(java.lang.Object obj, ObjectName objectName)
           
 void MBeanServerSupport.unregisterMBean(ObjectName objectName)
           
 ObjectInstance MBeanServerSupport.getObjectInstance(ObjectName objectName)
           
 java.util.Set MBeanServerSupport.queryMBeans(ObjectName objectName, QueryExp query)
           
 java.util.Set MBeanServerSupport.queryNames(ObjectName objectName, QueryExp query)
           
 boolean MBeanServerSupport.isRegistered(ObjectName objectName)
           
 java.lang.Object MBeanServerSupport.getAttribute(ObjectName objectName, java.lang.String attribute)
           
 AttributeList MBeanServerSupport.getAttributes(ObjectName objectName, java.lang.String[] attributes)
           
 void MBeanServerSupport.setAttribute(ObjectName objectName, Attribute attribute)
           
 AttributeList MBeanServerSupport.setAttributes(ObjectName objectName, AttributeList attributes)
           
 java.lang.Object MBeanServerSupport.invoke(ObjectName objectName, java.lang.String operationName, java.lang.Object[] params, java.lang.String[] signatures)
           
 void MBeanServerSupport.addNotificationListener(ObjectName objectName, NotificationListener listener, NotificationFilter filter, java.lang.Object handback)
           
 void MBeanServerSupport.addNotificationListener(ObjectName objectName, ObjectName listenerName, NotificationFilter filter, java.lang.Object handback)
           
 void MBeanServerSupport.removeNotificationListener(ObjectName objectName, NotificationListener listener)
           
 void MBeanServerSupport.removeNotificationListener(ObjectName objectName, ObjectName listenerName)
           
 MBeanInfo MBeanServerSupport.getMBeanInfo(ObjectName objectName)
           
 boolean MBeanServerSupport.isInstanceOf(ObjectName objectName, java.lang.String className)
           
 java.lang.ClassLoader MBeanServerSupport.getClassLoaderFor(ObjectName objectName)
          Return the ClassLoader that was used for loading the class of the named MBean.
 java.lang.ClassLoader MBeanServerSupport.getClassLoader(ObjectName loaderName)
          Return the named ClassLoader.
 void MBeanServerSupport.removeNotificationListener(ObjectName objectName, ObjectName listenerName, NotificationFilter filter, java.lang.Object handback)
          Removes a listener from a registered MBean. The MBean must have a listener that exactly matches the given listener, filter, and handback parameters.
 void MBeanServerSupport.removeNotificationListener(ObjectName objectName, NotificationListener listener, NotificationFilter filter, java.lang.Object handback)
          Removes a listener from a registered MBean. The MBean must have a listener that exactly matches the given listener, filter, and handback parameters.
 void MBeanMetaDataSupport.setObjectName(ObjectName name)
           
 MBeanMetaData MBeanServerRepositoryController.retrieve(ObjectName name)
           
 void MBeanServerRepositoryController.store(ObjectName name, MBeanMetaData metadata)
           
 void MBeanServerRepositoryController.remove(ObjectName name)
           
 boolean MBeanServerRepositoryController.contains(ObjectName name)
           
 java.util.Set MBeanServerRepositoryController.queryMBeans(ObjectName pattern, QueryExp query)
           
 MBeanMetaData MBeanServerRepository.get(ObjectName name)
           
 void MBeanServerRepository.put(ObjectName name, MBeanMetaData metadata)
           
 void MBeanServerRepository.remove(ObjectName name)
           
 boolean MBeanServerRepository.contains(ObjectName name)
           
static MBeanMetaData MBeanMetaDataFactory.getInstance(ObjectName objectName, java.lang.Object obj, java.lang.Class interfaceClass)
           
 void MBeanMetaData.setObjectName(ObjectName name)
           
 void DynamicMBeanMetaDataSupport.setObjectName(ObjectName name)
           
 void ExtendedMBeanServerDelegate.sendNotification(java.lang.String type, ObjectName objectName, java.lang.String operationName, java.lang.Object[] params)
           
 

Constructors in org.huihoo.jfox.jmx with parameters of type ObjectName
MBeanMetaDataSupport(ObjectName objectName, java.lang.Object mbeanObject, MBeanInterfaceMetaData interfaceMetaData)
           
ExtendedMBeanServerNotification(java.lang.String type, java.lang.Object source, long sequenceNumber, ObjectName objectName)
           
ExtendedMBeanServerNotification(java.lang.String type, java.lang.Object source, long sequenceNumber, ObjectName objectName, java.lang.String operationName, java.lang.Object[] params)
           
DynamicMBeanMetaDataSupport(ObjectName objectName, DynamicMBean obj)
           
ExtendedObjectInstance(ObjectName objectName, java.lang.Class mbeanClass, java.lang.Class interfaceClass)
           
 

Uses of ObjectName in org.huihoo.jfox.jmx.adaptor.http
 

Methods in org.huihoo.jfox.jmx.adaptor.http that return ObjectName
 ObjectName HtmlAdaptorServer.preRegister(MBeanServer mbeanServer, ObjectName objectName)
           
 

Methods in org.huihoo.jfox.jmx.adaptor.http with parameters of type ObjectName
 ObjectName HtmlAdaptorServer.preRegister(MBeanServer mbeanServer, ObjectName objectName)
           
 

Uses of ObjectName in org.huihoo.jfox.jmx.queries
 

Methods in org.huihoo.jfox.jmx.queries with parameters of type ObjectName
 ValueExp TimesOpValueExp.apply(ObjectName objectname)
           
 ValueExp DivOpValueExp.apply(ObjectName objectname)
           
 boolean OrQueryExp.apply(ObjectName objectname)
           
 boolean InQueryExp.apply(ObjectName objectname)
           
 ValueExp BooleanValueExp.apply(ObjectName objectname)
           
 boolean AndQueryExp.apply(ObjectName objectname)
           
 boolean MatchQueryExp.apply(ObjectName objectname)
           
 boolean GeqRelQueryExp.apply(ObjectName objectname)
           
 ValueExp MinusOpValueExp.apply(ObjectName objectname)
           
 boolean BetweenQueryExp.apply(ObjectName objectname)
           
 ValueExp ClassAttributeValueExp.apply(ObjectName objectname)
           
protected  java.lang.Object ClassAttributeValueExp.getValue(ObjectName objectname)
           
 boolean LeqRelQueryExp.apply(ObjectName objectname)
           
 ValueExp NumericValueExp.apply(ObjectName objectname)
           
 boolean EqRelQueryExp.apply(ObjectName objectname)
           
 boolean GtRelQueryExp.apply(ObjectName objectname)
           
 boolean LtRelQueryExp.apply(ObjectName objectname)
           
 ValueExp QualifiedAttributeValueExp.apply(ObjectName objectname)
           
 boolean NotQueryExp.apply(ObjectName objectname)
           
 ValueExp PlusOpValueExp.apply(ObjectName objectname)