Uses of Class
javax.management.ObjectName

Packages that use ObjectName
javax.management Provides the core JMX classes
javax.management.loading Provides the classes which implement advanced dynamic loading
javax.management.modelmbean Provides the definition of the ModelMBean classes
javax.management.monitor Provides the definition of the monitor classes
javax.management.relation Provides the definition of the Relation service
javax.management.timer Provides the definition of the Timer MBean
 

Uses of ObjectName in javax.management
 

Methods in javax.management that return ObjectName
static ObjectName ObjectName.getInstance(java.lang.String name)
          Return an instance of ObjectName that can be used anywhere an object obtained with new ObjectName(name) can be used.
static ObjectName ObjectName.getInstance(java.lang.String domain, java.lang.String key, java.lang.String value)
          Return an instance of ObjectName that can be used anywhere an object obtained with new ObjectName(domain, key, value) can be used.
static ObjectName ObjectName.getInstance(java.lang.String domain, java.util.Hashtable table)
          Return an instance of ObjectName that can be used anywhere an object obtained with new ObjectName(domain, table) can be used.
static ObjectName ObjectName.getInstance(ObjectName name)
          Return an instance of ObjectName that can be used anywhere the given object can be used.
 ObjectName ObjectInstance.getObjectName()
          Returns the object name part.
 ObjectName MBeanServerNotification.getMBeanName()
          Returns the object name of the MBean that caused the notification.
 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 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)
          Unregisters 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)
          Gets 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)
          Adds a listener to a registered MBean.
 void MBeanServer.addNotificationListener(ObjectName name, ObjectName listener, NotificationFilter filter, java.lang.Object handback)
          Adds a listener to a registered MBean.
 void MBeanServer.removeNotificationListener(ObjectName name, ObjectName listener)
          Removes a listener from a registered MBean.
 void MBeanServer.removeNotificationListener(ObjectName name, ObjectName listener, NotificationFilter filter, java.lang.Object handback)
          Removes a listener from a registered MBean.
 void MBeanServer.removeNotificationListener(ObjectName name, NotificationListener listener)
          Removes a listener from a registered MBean.
 void MBeanServer.removeNotificationListener(ObjectName name, NotificationListener listener, NotificationFilter filter, java.lang.Object handback)
          Removes 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.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.
 java.io.ObjectInputStream MBeanServer.deserialize(ObjectName name, byte[] data)
          Deprecated. Use getClassLoaderFor to obtain the appropriate class loader for deserialization.
 java.io.ObjectInputStream MBeanServer.deserialize(java.lang.String className, ObjectName loaderName, byte[] data)
          Deprecated. Use getClassLoader to obtain the class loader for deserialization.
 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.
static ObjectName ObjectName.getInstance(ObjectName name)
          Return an instance of ObjectName that can be used anywhere the given object can be used.
 boolean ObjectName.apply(ObjectName name)
          Test whether this ObjectName, which may be a pattern, matches another ObjectName.
 boolean QueryExp.apply(ObjectName name)
          Applies the QueryExp on an MBean.
 ValueExp ValueExp.apply(ObjectName name)
          Applies the ValueExp on a MBean.
 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.
 void MBeanServerConnection.addNotificationListener(ObjectName name, ObjectName listener, NotificationFilter filter, java.lang.Object handback)
          Adds a listener to a registered MBean.
 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.
 void MBeanServerConnection.removeNotificationListener(ObjectName name, NotificationListener listener)
          Removes a listener from a registered MBean.
 void MBeanServerConnection.removeNotificationListener(ObjectName name, NotificationListener listener, NotificationFilter filter, java.lang.Object handback)
          Removes a listener from a registered MBean.
 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.
static java.lang.Object MBeanServerInvocationHandler.newProxyInstance(MBeanServerConnection connection, ObjectName objectName, java.lang.Class interfaceClass, boolean notificationBroadcaster)
          Return a proxy that implements the given interface by forwarding its methods through the given MBean server to the named MBean.
 ValueExp AttributeValueExp.apply(ObjectName name)
          Applies the AttributeValueExp on an MBean.
protected  java.lang.Object AttributeValueExp.getAttribute(ObjectName name)
          Return the value of the given attribute in the named MBean.
 ObjectName MBeanRegistration.preRegister(MBeanServer server, ObjectName name)
          Allows the MBean to perform any operations it needs before being registered in the MBean server.
 ValueExp StringValueExp.apply(ObjectName name)
          Applies the ValueExp on a MBean.
 

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.
MBeanPermission(java.lang.String className, java.lang.String member, ObjectName objectName, java.lang.String actions)
          Create a new MBeanPermission object with the specified target name (class name, member, object name) and actions.
MBeanServerInvocationHandler(MBeanServerConnection connection, ObjectName objectName)
          Invocation handler that forwards methods through an MBean server.
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.
 

Uses of ObjectName in javax.management.loading
 

Methods in javax.management.loading that return ObjectName
 ObjectName MLet.preRegister(MBeanServer server, ObjectName name)
          Allows the m-let to perform any operations it needs before being registered in the MBean server.
 

Methods in javax.management.loading with parameters of type ObjectName
 ObjectName MLet.preRegister(MBeanServer server, ObjectName name)
          Allows the m-let to perform any operations it needs before being registered in the MBean server.
 

Uses of ObjectName in javax.management.modelmbean
 

Methods in javax.management.modelmbean that return ObjectName
 ObjectName RequiredModelMBean.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.modelmbean with parameters of type ObjectName
 ObjectName RequiredModelMBean.preRegister(MBeanServer server, ObjectName name)
          Allows the MBean to perform any operations it needs before being registered in the MBean server.
 

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[] MonitorMBean.getObservedObjects()
          Returns an array containing the objects being observed.
 ObjectName MonitorMBean.getObservedObject()
          Deprecated. As of JMX 1.2, replaced by MonitorMBean.getObservedObjects()
 ObjectName Monitor.preRegister(MBeanServer server, ObjectName name)
          Allows the monitor MBean to perform any operations it needs before being registered in the MBean server.
 ObjectName Monitor.getObservedObject()
          Deprecated. As of JMX 1.2, replaced by Monitor.getObservedObjects()
 ObjectName[] Monitor.getObservedObjects()
          Returns an array containing the objects being observed.
 

Methods in javax.management.monitor with parameters of type ObjectName
 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 CounterMonitor.getDerivedGauge(ObjectName object)
          Gets the derived gauge of the specified object, if this object is contained in the set of observed MBeans, or null otherwise.
 long CounterMonitor.getDerivedGaugeTimeStamp(ObjectName object)
          Gets the derived gauge timestamp of the specified object, if this object is contained in the set of observed MBeans, or null otherwise.
 java.lang.Number CounterMonitor.getThreshold(ObjectName object)
          Gets the current threshold value of the specified object, if this object is contained in the set of observed MBeans, or null otherwise.
 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.
 void MonitorMBean.setObservedObject(ObjectName object)
          Deprecated. As of JMX 1.2, replaced by MonitorMBean.addObservedObject(javax.management.ObjectName)
 java.lang.Number GaugeMonitor.getDerivedGauge(ObjectName object)
          Gets the derived gauge of the specified object, if this object is contained in the set of observed MBeans, or null otherwise.
 long GaugeMonitor.getDerivedGaugeTimeStamp(ObjectName object)
          Gets the derived gauge timestamp of the specified object, if this object is contained in the set of observed MBeans, or null otherwise.
 ObjectName Monitor.preRegister(MBeanServer server, ObjectName name)
          Allows the monitor MBean to perform any operations it needs before being registered in the MBean server.
 void Monitor.setObservedObject(ObjectName object)
          Deprecated. As of JMX 1.2, replaced by Monitor.addObservedObject(javax.management.ObjectName)
 void Monitor.addObservedObject(ObjectName object)
          Adds the specified object in the set of observed MBeans, if this object is not already present.
 void Monitor.removeObservedObject(ObjectName object)
          Removes the specified object from the set of observed MBeans.
 boolean Monitor.containsObservedObject(ObjectName object)
          Tests whether the specified object is in the set of observed MBeans.
 java.lang.String StringMonitor.getDerivedGauge(ObjectName object)
          Gets the derived gauge of the specified object, if this object is contained in the set of observed MBeans, or null otherwise.
 long StringMonitor.getDerivedGaugeTimeStamp(ObjectName object)
          Gets the derived gauge timestamp of the specified object, if this object is contained in the set of observed MBeans, or null otherwise.
 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.
 

Uses of ObjectName in javax.management.relation
 

Methods in javax.management.relation that return ObjectName
 ObjectName RelationSupport.getRelationServiceName()
          Returns ObjectName of the Relation Service handling the relation.
 ObjectName RelationSupport.preRegister(MBeanServer server, ObjectName name)
           
 ObjectName RelationNotification.getObjectName()
          Returns the ObjectName of the created/removed/updated relation.
 ObjectName Relation.getRelationServiceName()
          Returns ObjectName of the Relation Service handling the relation.
 ObjectName RelationService.preRegister(MBeanServer server, ObjectName name)
           
 ObjectName RelationService.isRelationMBean(java.lang.String theRelId)
          If the relation is represented by an MBean (created by the user and added as a relation in the Relation Service), returns the ObjectName of the MBean.
 ObjectName RelationServiceMBean.isRelationMBean(java.lang.String theRelId)
          If the relation is represented by an 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 theObjName, java.lang.String theRoleName)
          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 theObjName)
          Disables MBeanServerNotifications concerning given ObjectName.
 void MBeanServerNotificationFilter.enableObjectName(ObjectName theObjName)
          Enables MBeanServerNotifications concerning given ObjectName.
 void Relation.handleMBeanUnregistration(ObjectName theObjName, java.lang.String theRoleName)
          Callback used by the Relation Service when a MBean referenced in a role is unregistered.
 ObjectName RelationService.preRegister(MBeanServer server, ObjectName name)
           
 void RelationService.addRelation(ObjectName theRelObjectName)
          Adds an MBean created by the user (and registered by him in the MBean Server) as a relation in the Relation Service.
 java.lang.String RelationService.isRelation(ObjectName theObjName)
          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 RelationService.findReferencingRelations(ObjectName theMBeanName, java.lang.String theRelTypeName, java.lang.String theRoleName)
          Retrieves the relations where a given MBean is referenced.
 java.util.Map RelationService.findAssociatedMBeans(ObjectName theMBeanName, java.lang.String theRelTypeName, java.lang.String theRoleName)
          Retrieves the MBeans associated to given one in a relation.
 void RelationServiceMBean.addRelation(ObjectName theRelObjectName)
          Adds an MBean created by the user (and registered by him in the MBean Server) as a relation in the Relation Service.
 java.lang.String RelationServiceMBean.isRelation(ObjectName theObjName)
          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 theMBeanName, java.lang.String theRelTypeName, java.lang.String theRoleName)
          Retrieves the relations where a given MBean is referenced.
 java.util.Map RelationServiceMBean.findAssociatedMBeans(ObjectName theMBeanName, java.lang.String theRelTypeName, java.lang.String theRoleName)
          Retrieves the MBeans associated to given one in a relation.
 

Constructors in javax.management.relation with parameters of type ObjectName
RelationSupport(java.lang.String theRelId, ObjectName theRelServiceName, java.lang.String theRelTypeName, RoleList theRoleList)
          Creates object.
RelationSupport(java.lang.String theRelId, ObjectName theRelServiceName, MBeanServer theRelServiceMBeanServer, java.lang.String theRelTypeName, RoleList theRoleList)
          Creates object.
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 an 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.
 

Uses of ObjectName in javax.management.timer
 

Methods in javax.management.timer that return ObjectName
 ObjectName Timer.preRegister(MBeanServer server, ObjectName name)
          Allows the timer MBean to perform any operations it needs before being registered in the MBean server.
 

Methods in javax.management.timer with parameters of type ObjectName
 ObjectName Timer.preRegister(MBeanServer server, ObjectName name)
          Allows the timer MBean to perform any operations it needs before being registered in the MBean server.
 


Maintenance Release
jmx-1.2.1-b14 2003.07.15_17:22:05_MEST

Copyright 1999-2003 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms.