Interface Introspector


  • public interface Introspector
    A service that can be notified when the server dump command is used.
    • Method Detail

      • getIntrospectorName

        java.lang.String getIntrospectorName()
        The name of the introspector, which is used for the introspection file name. Names should follow the naming convention for a Java class and typically end with Introspector; for example, TestComponentIntrospector.
      • getIntrospectorDescription

        java.lang.String getIntrospectorDescription()
        A description of the introspector, which is added to the introspection file.
      • introspect

        void introspect​(java.io.PrintWriter out)
                 throws java.lang.Exception
        Performs the introspection. Implementations should be robust, but for convenience, this method allows any exception to be thrown.
        Throws:
        java.lang.Exception