Package com.ibm.wsspi.logging
Interface Introspector
-
- All Known Implementing Classes:
SensitiveIntrospector
public interface Introspector
A service that can be notified when theserver dump
command is used.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getIntrospectorDescription()
A description of the introspector, which is added to the introspection file.java.lang.String
getIntrospectorName()
The name of the introspector, which is used for the introspection file name.void
introspect(java.io.PrintWriter out)
Performs the introspection.
-
-
-
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 withIntrospector
; 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
-
-