Class EndpointClassNamePathPair

  • All Implemented Interfaces:
    java.io.Serializable

    public class EndpointClassNamePathPair
    extends java.lang.Object
    implements java.io.Serializable
    Path and class name of an endpoint exposed by JMX.

    See ApplicationEventListener.

    Author:
    Petr Janouch
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      EndpointClassNamePathPair​(java.lang.String endpointPath, java.lang.String endpointClassName)
      Constructor, ConstructorProperties is required, so that MXBean client can create an instance.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getEndpointClassName()
      Get class name of the endpoint.
      java.lang.String getEndpointPath()
      Get the path the endpoint is registered on.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • EndpointClassNamePathPair

        @ConstructorProperties({"endpointPath","endpointClassName"})
        public EndpointClassNamePathPair​(java.lang.String endpointPath,
                                         java.lang.String endpointClassName)
        Constructor, ConstructorProperties is required, so that MXBean client can create an instance.
        Parameters:
        endpointPath - the path the endpoint is registered on.
        endpointClassName - the class name of the endpoint.
    • Method Detail

      • getEndpointClassName

        public java.lang.String getEndpointClassName()
        Get class name of the endpoint.
        Returns:
        class name of the endpoint.
      • getEndpointPath

        public java.lang.String getEndpointPath()
        Get the path the endpoint is registered on.
        Returns:
        the path the endpoint is registered on.