java.lang.Object
org.tquadrat.foundation.mgmt.JMXUtils

@UtilityClass @ClassVersion(sourceVersion="$Id: JMXUtils.java 1070 2023-09-29 17:09:34Z tquadrat $") @API(status=STABLE, since="0.0.1") public final class JMXUtils extends Object
This class provides some utilities that are useful in the context of JMX.
Author:
Thomas Thrien (thomas.thrien@tquadrat.org)
Version:
$Id: JMXUtils.java 1070 2023-09-29 17:09:34Z tquadrat $
Since:
0.0.1
UML Diagram
UML Diagram for "org.tquadrat.foundation.mgmt.JMXUtils"

UML Diagram for "org.tquadrat.foundation.mgmt.JMXUtils"

UML Diagram for "org.tquadrat.foundation.mgmt.JMXUtils"
  • Field Details

  • Constructor Details

    • JMXUtils

      private JMXUtils()
      No instance allowed for this class.
  • Method Details

    • composeObjectName

      @SafeVarargs @API(status=STABLE, since="0.0.1") public static ObjectName composeObjectName(String domainName, String type, String function, Class<?> mbeanClass, NameValuePair<String>... properties) throws MalformedObjectNameException

      Composes an object name from the given domain name and the given properties.

      The object name has the form

          <Domain>:type=<Type>,function=<Function>[, class=<Class>][,…]

      The type is something like a category.

      The function is a description for what the MBean does.

      The class can be provided, if multiple MBean implementations with the same type and function will be loaded.

      Additional properties in the form <name>=<value> can be added as required.

      Parameters:
      domainName - The domain name.
      type - The type of the MBean that will be named with the new object name.
      function - The function of the MBean.
      mbeanClass - The MBean's class; can be null.
      properties - Additional properties as name-value-pairs; can be null.
      Returns:
      The object name.
      Throws:
      MalformedObjectNameException - It is not possible to create a valid object name from the given domain name and properties.
    • composeObjectName

      Composes an object name from the given domain name and the given properties.
      Parameters:
      domainName - The domain name.
      properties - The properties as name-value-pairs; at least one property has to be provided.
      Returns:
      The object name.
      Throws:
      MalformedObjectNameException - It is not possible to create a valid object name from the given domain name and properties.
    • toString

      private static final String toString(NameValuePair<String> pair)
      Converts an instance of NameValuePair to a String.
      Parameters:
      pair - The name-value-pair.
      Returns:
      The String representation of the name-value-pair.
    • unregisterQuietly

      @API(status=STABLE, since="0.0.1") public static void unregisterQuietly(JMXSupport<?> mbean)
      Unregisters the given MBean from the MBeanServer. All exceptions – if any – will be swallowed silently.
      Parameters:
      mbean - The mbean to unregister; may be null.