Package com.ibm.wsspi.logging
Interface Introspector
- All Known Implementing Classes:
SensitiveIntrospector
public interface Introspector
A service that can be notified when the
server dump
command is used.-
Method Summary
Modifier and TypeMethodDescriptionA description of the introspector, which is added to the introspection file.The name of the introspector, which is used for the introspection file name.void
introspect
(PrintWriter out) Performs the introspection.
-
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 withIntrospector
; for example,TestComponentIntrospector
. -
getIntrospectorDescription
String getIntrospectorDescription()A description of the introspector, which is added to the introspection file. -
introspect
Performs the introspection. Implementations should be robust, but for convenience, this method allows any exception to be thrown.- Throws:
Exception
-