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 SummaryModifier 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.voidintrospect(PrintWriter out) Performs the introspection.
- 
Method Details- 
getIntrospectorNameString 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.
- 
getIntrospectorDescriptionString getIntrospectorDescription()A description of the introspector, which is added to the introspection file.
- 
introspectPerforms the introspection. Implementations should be robust, but for convenience, this method allows any exception to be thrown.- Throws:
- Exception
 
 
-