Package com.ibm.wsspi.logging
Interface Introspector
- 
 public interface IntrospectorA service that can be notified when theserver dumpcommand is used.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetIntrospectorDescription()A description of the introspector, which is added to the introspection file.java.lang.StringgetIntrospectorName()The name of the introspector, which is used for the introspection file name.voidintrospect(java.io.PrintWriter out)Performs the introspection.
 
- 
- 
- 
Method Detail- 
getIntrospectorNamejava.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.
 - 
getIntrospectorDescriptionjava.lang.String getIntrospectorDescription() A description of the introspector, which is added to the introspection file.
 - 
introspectvoid introspect(java.io.PrintWriter out) throws java.lang.ExceptionPerforms the introspection. Implementations should be robust, but for convenience, this method allows any exception to be thrown.- Throws:
- java.lang.Exception
 
 
- 
 
-