Ejemplo n.º 1
0
  /**
   * Checks whether an MBean, identified by its object name, is already registered with the MBean
   * server.
   *
   * @param name The object name of the MBean to be checked.
   * @return True if the MBean is already registered in the MBean server, false otherwise.
   * @exception RuntimeOperationsException Wraps an <CODE>{@link java.lang.IllegalArgumentException}
   *     </CODE>: The object name in parameter is null.
   */
  public boolean isRegistered(ObjectName name) {

    return interceptor.isRegistered(name);
  }