Package com.ibm.ws.ffdc
Class FFDC
- java.lang.Object
- 
- com.ibm.ws.ffdc.FFDC
 
- 
 public final class FFDC extends java.lang.Object
- 
- 
Constructor SummaryConstructors Constructor Description FFDC()
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static booleanderegisterDiagnosticModule(java.lang.String packageName)Deregister a diagnostic module for a packagestatic booleanderegisterIncidentForwarder(IncidentForwarder forwarder)static java.util.Map<java.lang.String,DiagnosticModule>getDiagnosticModuleMap()Return the map of package names to diagnostic modulesstatic java.util.Set<IncidentForwarder>getIncidentForwarders()static intregisterDiagnosticModule(DiagnosticModule diagnosticModule, java.lang.String packageName)Register a diagnostic modulestatic booleanregisterIncidentForwarder(IncidentForwarder forwarder)
 
- 
- 
- 
Method Detail- 
registerDiagnosticModulepublic static int registerDiagnosticModule(DiagnosticModule diagnosticModule, java.lang.String packageName) Register a diagnostic module- Parameters:
- diagnosticModule- The diagnostic module to be registered
- packageName- The package name with which to register
- Returns:
- 0 if the diagnostic module is registered 1 if the diagnostic module was already registered 3 if the diagnostic module could not be initialized
 
 - 
deregisterDiagnosticModulepublic static boolean deregisterDiagnosticModule(java.lang.String packageName) Deregister a diagnostic module for a package- Parameters:
- packageName- The package name for which to deregister a diagnostic module
- Returns:
- true if a diagnostic module was registered from the package (and is now not registered), false otherwise
 
 - 
getDiagnosticModuleMappublic static java.util.Map<java.lang.String,DiagnosticModule> getDiagnosticModuleMap() Return the map of package names to diagnostic modules- Returns:
- Map
 
 - 
registerIncidentForwarderpublic static boolean registerIncidentForwarder(IncidentForwarder forwarder) 
 - 
deregisterIncidentForwarderpublic static boolean deregisterIncidentForwarder(IncidentForwarder forwarder) 
 - 
getIncidentForwarderspublic static java.util.Set<IncidentForwarder> getIncidentForwarders() - Returns:
 
 
- 
 
-