Class EndpointClassNamePathPair

java.lang.Object
org.glassfish.tyrus.ext.monitoring.jmx.EndpointClassNamePathPair
All Implemented Interfaces:
Serializable

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

See ApplicationEventListener.

Author:
Petr Janouch
See Also:
  • Constructor Details

    • EndpointClassNamePathPair

      @ConstructorProperties({"endpointPath","endpointClassName"}) public EndpointClassNamePathPair(String endpointPath, 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 Details

    • getEndpointClassName

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

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