Lines Matching refs:name

47      * Repository} to load the class of the MBean.  An object name is
48 * associated with the MBean. If the object name given is null, the
49 * MBean must provide its own name by implementing the {@link
51 * and returning the name from the {@link
56 * createMBean(className, name, (Object[]) null, (String[])
59 * @param className The class name of the MBean to be instantiated.
60 * @param name The object name of the MBean. May be null.
63 * <CODE>ObjectName</CODE> and the Java class name of the newly
65 * is <code>n</code>, the contained Java class name is
111 public ObjectInstance createMBean(String className, ObjectName name)
118 * class loader to be used is identified by its object name. An
119 * object name is associated with the MBean. If the object name of
121 * server will be used. If the MBean's object name given is null,
122 * the MBean must provide its own name by implementing the {@link
124 * and returning the name from the {@link
129 * createMBean(className, name, loaderName, (Object[]) null,
132 * @param className The class name of the MBean to be instantiated.
133 * @param name The object name of the MBean. May be null.
134 * @param loaderName The object name of the class loader to be used.
137 * <CODE>ObjectName</CODE> and the Java class name of the newly
139 * is <code>n</code>, the contained Java class name is
187 public ObjectInstance createMBean(String className, ObjectName name,
199 * Repository} to load the class of the MBean. An object name is
200 * associated with the MBean. If the object name given is null, the
201 * MBean must provide its own name by implementing the {@link
203 * and returning the name from the {@link
206 * @param className The class name of the MBean to be instantiated.
207 * @param name The object name of the MBean. May be null.
214 * <CODE>ObjectName</CODE> and the Java class name of the newly
216 * is <code>n</code>, the contained Java class name is
262 public ObjectInstance createMBean(String className, ObjectName name,
270 * class loader to be used is identified by its object name. An
271 * object name is associated with the MBean. If the object name of
273 * MBean server will be used. If the MBean object name given is
274 * null, the MBean must provide its own name by implementing the
276 * interface and returning the name from the {@link
279 * @param className The class name of the MBean to be instantiated.
280 * @param name The object name of the MBean. May be null.
285 * @param loaderName The object name of the class loader to be used.
288 * <CODE>ObjectName</CODE> and the Java class name of the newly
290 * is <code>n</code>, the contained Java class name is
338 public ObjectInstance createMBean(String className, ObjectName name,
348 * identified by its object name. Once the method has been
350 * name.
352 * @param name The object name of the MBean to be unregistered.
379 * name in parameter is null or the MBean you are when trying to
386 public void unregisterMBean(ObjectName name)
394 * @param name The object name of the MBean.
397 * specified by <VAR>name</VAR>. The contained <code>ObjectName</code>
398 * is <code>name</code> and the contained class name is
399 * <code>{@link #getMBeanInfo getMBeanInfo(name)}.getClassName()</code>.
406 public ObjectInstance getObjectInstance(ObjectName name)
414 * MBean. When the object name is null or no domain and key
418 * <CODE>ObjectName</CODE> and the Java Class name) for the
421 * @param name The object name pattern identifying the MBeans to
435 public Set<ObjectInstance> queryMBeans(ObjectName name, QueryExp query)
443 * expression, a specific MBean name (equivalent to testing
444 * whether an MBean is registered). When the object name is null
449 * @param name The object name pattern identifying the MBean names
451 * specified, the name of all registered MBeans will be retrieved.
463 public Set<ObjectName> queryNames(ObjectName name, QueryExp query)
469 * Checks whether an MBean, identified by its object name, is
472 * @param name The object name of the MBean to be checked.
479 * name in parameter is null.
483 public boolean isRegistered(ObjectName name)
500 * is identified by its object name.
502 * @param name The object name of the MBean from which the
504 * @param attribute A String specifying the name of the attribute
520 * name in parameter is null or the attribute in parameter is
527 public Object getAttribute(ObjectName name, String attribute)
535 * is identified by its object name.</p>
560 * @param name The object name of the MBean from which the
572 * name in parameter is null or attributes in parameter is null.
578 public AttributeList getAttributes(ObjectName name, String[] attributes)
585 * is identified by its object name.
587 * @param name The name of the MBean within which the attribute is
605 * name in parameter is null or the attribute in parameter is
612 public void setAttribute(ObjectName name, Attribute attribute)
620 * identified by its object name.</p>
651 * @param name The object name of the MBean within which the
665 * name in parameter is null or attributes in parameter is null.
671 public AttributeList setAttributes(ObjectName name,
710 * @param name The object name of the MBean on which the method is
712 * @param operationName The name of the operation to be invoked.
735 public Object invoke(ObjectName name, String operationName,
744 * The default domain name is used as the domain part in the ObjectName
776 * @param name The name of the MBean on which the listener should
785 * @exception InstanceNotFoundException The MBean name provided
794 public void addNotificationListener(ObjectName name,
811 * that is registered with the given name at the time this method
815 * @param name The name of the MBean on which the listener should
817 * @param listener The object name of the listener which will
824 * @exception InstanceNotFoundException The MBean name of the
838 public void addNotificationListener(ObjectName name,
852 * @param name The name of the MBean on which the listener should
854 * @param listener The object name of the listener to be removed.
856 * @exception InstanceNotFoundException The MBean name provided
866 public void removeNotificationListener(ObjectName name,
883 * @param name The name of the MBean on which the listener should
885 * @param listener The object name of the listener to be removed.
891 * @exception InstanceNotFoundException The MBean name provided
903 public void removeNotificationListener(ObjectName name,
918 * @param name The name of the MBean on which the listener should
922 * @exception InstanceNotFoundException The MBean name provided
932 public void removeNotificationListener(ObjectName name,
949 * @param name The name of the MBean on which the listener should
957 * @exception InstanceNotFoundException The MBean name provided
969 public void removeNotificationListener(ObjectName name,
980 * @param name The name of the MBean to analyze
994 public MBeanInfo getMBeanInfo(ObjectName name)
1003 * <p>If <code>name</code> does not name an MBean, this method
1007 * X be the MBean named by <code>name</code>,<br>
1009 * N be the class name in X's {@link MBeanInfo}.</p>
1022 * @param name The <CODE>ObjectName</CODE> of the MBean.
1023 * @param className The name of the class.
1035 public boolean isInstanceOf(ObjectName name, String className)