Interface Introspector

All Known Implementing Classes:
SensitiveIntrospector

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

    • getIntrospectorName

      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

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

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