com.ibm.are.report
Interface Reporting

All Known Subinterfaces:
PluginReporting, ReporterReporting, StatusReporting
All Known Implementing Classes:
BasePlugin, BasePlugin.ReporterCollection

public interface Reporting

The Reporting interface outlines some basic constructs and constants for reporting status and problems in the ARE environment, such as the format of a report and the different severity levels that problems can be reported at.

Version:
1.0
Author:
IBM

Field Summary
static java.lang.String COPYRIGHT
          Copyright for class bytecode
static int FORMAT_BINARY
          Formats the report output in binary
static int FORMAT_HTML
          Formats the report output in HTML
static int FORMAT_PLAIN_TEXT
          Formats the report output in plain text
static int FORMAT_SERIALIZED
          Formats the report output in one or more serialized Java objects
static int FORMAT_USER_DEFINED
          Formats the report output in a user-defined format.
static int FORMAT_XML
          Formats the report output in XML
static java.lang.String LEVEL_ERROR
          Severity level of ERROR
static java.lang.String LEVEL_INFO
          Severity level of INFO
static java.lang.String LEVEL_NONE
          Severity level of NONE (not a problem)
static java.lang.String LEVEL_WARNING
          Severity level of WARNING
static int MAX_REPORT_DEPTH
          Maximum report depth for report methods
static int MIN_REPORT_DEPTH
          Minimum report depth for report methods
 

Field Detail

COPYRIGHT

static final java.lang.String COPYRIGHT
Copyright for class bytecode

See Also:
Constant Field Values

FORMAT_PLAIN_TEXT

static final int FORMAT_PLAIN_TEXT
Formats the report output in plain text

See Also:
Constant Field Values

FORMAT_HTML

static final int FORMAT_HTML
Formats the report output in HTML

See Also:
Constant Field Values

FORMAT_XML

static final int FORMAT_XML
Formats the report output in XML

See Also:
Constant Field Values

FORMAT_BINARY

static final int FORMAT_BINARY
Formats the report output in binary

See Also:
Constant Field Values

FORMAT_SERIALIZED

static final int FORMAT_SERIALIZED
Formats the report output in one or more serialized Java objects

See Also:
Constant Field Values

FORMAT_USER_DEFINED

static final int FORMAT_USER_DEFINED
Formats the report output in a user-defined format. This value should be used for reporters implementing a format that is not defined in the previous list of supported formats.

See Also:
Constant Field Values

LEVEL_NONE

static final java.lang.String LEVEL_NONE
Severity level of NONE (not a problem)

See Also:
Constant Field Values

LEVEL_INFO

static final java.lang.String LEVEL_INFO
Severity level of INFO

See Also:
Constant Field Values

LEVEL_WARNING

static final java.lang.String LEVEL_WARNING
Severity level of WARNING

See Also:
Constant Field Values

LEVEL_ERROR

static final java.lang.String LEVEL_ERROR
Severity level of ERROR

See Also:
Constant Field Values

MIN_REPORT_DEPTH

static final int MIN_REPORT_DEPTH
Minimum report depth for report methods

See Also:
Constant Field Values

MAX_REPORT_DEPTH

static final int MAX_REPORT_DEPTH
Maximum report depth for report methods

See Also:
Constant Field Values