Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
com.flexstor.common.util.DiagnosticCategory

Uses of DiagnosticCategory in com.flexstor.common.util
 

Fields in com.flexstor.common.util declared as DiagnosticCategory
static DiagnosticCategory DiagnosticCategoryI.CAT_SEND
          Trace category for Send Dialog/Send Elements
static DiagnosticCategory DiagnosticCategoryI.CAT_ARCHIVE
          Trace category for Archive Elements
static DiagnosticCategory DiagnosticCategoryI.CAT_CLASSGEN
          Trace category for ClassGenerator
static DiagnosticCategory DiagnosticCategoryI.CAT_CLASSLDR
          Trace category for FlexClassLoader and subclasses
static DiagnosticCategory DiagnosticCategoryI.CAT_REPORT
          Trace category for Reporting
static DiagnosticCategory DiagnosticCategoryI.CAT_OAS
          Trace category for Oracle Application Server
static DiagnosticCategory DiagnosticCategoryI.CAT_PROCESS
          Trace category for external process generation
static DiagnosticCategory DiagnosticCategoryI.CAT_IMPORT
          Trace category for import
static DiagnosticCategory DiagnosticCategoryI.CAT_EXPORT
          Trace category for export
static DiagnosticCategory DiagnosticCategoryI.CAT_THREAD_MGR
          Trace category for thread manager
static DiagnosticCategory DiagnosticCategoryI.CAT_SCRIPT_SVC
          Trace category for Remote Asset Services
static DiagnosticCategory DiagnosticCategoryI.CAT_GATEWAY
          Trace category for the Server Gateway.
static DiagnosticCategory DiagnosticCategoryI.APPSERVER_MAIN
          Trace category for AppServer/Main
static DiagnosticCategory DiagnosticCategoryI.APPSERVER_QMANAGER
          Trace category for AppServer/QManager
static DiagnosticCategory DiagnosticCategoryI.APPSERVER_SERVICES
          Trace category for AppServer/Services (not including archive/restore)
static DiagnosticCategory DiagnosticCategoryI.APPSERVER_ARCHIVE
          Trace category for AppServer/Archive (including restore)
static DiagnosticCategory DiagnosticCategoryI.APPSERVER_IMPORT
          Trace category for AppServer/ImportProcessor
static DiagnosticCategory DiagnosticCategoryI.ASSET_REG
          Trace category for Asset Registry
static DiagnosticCategory DiagnosticCategoryI.REGISTRY
          Trace category for Root, Result Set, Disguise, Bucket, and Element Registries
static DiagnosticCategory DiagnosticCategoryI.SETTINGS
          Trace category for settings related
static DiagnosticCategory DiagnosticCategoryI.ASSET_VERSIONS
          Trace category for settings related
static DiagnosticCategory[] DiagnosticCategoryI.categories
          Array containing all categories
 

Methods in com.flexstor.common.util that return DiagnosticCategory
static DiagnosticCategory DiagnosticCategory.getCategory(java.lang.String sName)
           
 

Methods in com.flexstor.common.util with parameters of type DiagnosticCategory
static void DiagnosticBase.addOutputDevice(DiagnosticCategory category, java.io.OutputStream outstream)
          Adds an exclusive OutputStream as an output device for the specified category
static void DiagnosticBase.addOutputDevice(DiagnosticCategory category, java.io.PrintWriter writer)
          Adds an exclusive writer as an output device for the specified category
static int DiagnosticBase.getTraceLevel(DiagnosticCategory category)
           
static void DiagnosticBase.addTraceCategory(DiagnosticCategory category)
          Adds a category for tracing and warnings.
static void DiagnosticBase.removeTraceCategory(DiagnosticCategory category)
          Removes a category for tracing and warnings.
static void DiagnosticBase.warn(DiagnosticCategory category, boolean bCondition, java.lang.String sDescription)
          Output a warning if the category is enabled, and a condition is true, and general output is enabled
static void DiagnosticBase.warn(DiagnosticCategory category, java.lang.String sDescription)
          Output a warning if the category is enabled, and general output is enabled
static void DiagnosticBase.warn(DiagnosticCategory category, int nLevel, boolean bCondition, java.lang.String sDescription)
          Output a warning if the category is enabled, the threshold level is high enough, and a condition is true, and general output is enabled
static void DiagnosticBase.trace(DiagnosticCategory category, java.lang.String sDescription)
          Output a trace if the category and general output is enabled
static void DiagnosticBase.trace(DiagnosticCategory category, int nLevel, java.lang.String sDescription)
          Output a trace if the category is enabled and general output is enabled
static void DiagnosticBase.printStackTrace(DiagnosticCategory category, java.lang.Throwable t)
          Print a stack trace of the Throwable to the output devices if the category is enabled.
static void DiagnosticBase.printStackTrace(DiagnosticCategory category, int nLevel, java.lang.Throwable t)
          Print a stack trace of the Throwable to the output devices if the category is enabled and the trace level is high enough.
protected static void DiagnosticBase.println(DiagnosticCategory category, java.lang.String sText)
          Checks if an output device is registered for this category, if so, print to it, otherwise use general output devices.
protected static boolean DiagnosticBase.isRegisteredCategory(DiagnosticCategory category)
           
protected static boolean DiagnosticBase.isOutputLevel(DiagnosticCategory category, int nLevel)
           
static boolean DiagnosticBase.isOutputEnabled(DiagnosticCategory category)