Oracle Data-aware Controls Reference

Uses of Class
oracle.dacf.util.errormanager.ErrorType

Packages that use ErrorType
oracle.dacf.dataset This packages provides that classes, facilities and mechanisms necessary for defining that data model for the DAC Java client. 
oracle.dacf.style   
oracle.dacf.util.errorloggers This package provides classes which serve as examples of non-buffered error loggers. 
oracle.dacf.util.errormanager The ErrorManager is a singleton object that manages the storage and flow of ErrorMessage objects, and administers the registration of error listeners and error loggers. 
 

Uses of ErrorType in oracle.dacf.dataset
 

Subclasses of ErrorType in oracle.dacf.dataset
 class DacfType
          The DacfType class extends ErrorType to define the DACF error types.
 

Fields in oracle.dacf.dataset declared as ErrorType
static ErrorType DacfType.USER
          The error message describes an error condition that exists as a result of user action.
static ErrorType DacfType.CLIENT_APPLICATION
          The error message describes an error condition that exists as a result of an anticipated state or action within the client portion of the application that prevents or halts the intended behavior of the application.
static ErrorType DacfType.SERVER_APPLICATION
          The error message describes an error condition that exists as a result of an anticipated state or action within the server portion of the application that prevents or halts the intended behavior of the application.
static ErrorType DacfType.CLIENT_FRAMEWORK
          The error message describes an error condition that exists as a result of an anticipated state or action within the client portion of the framework that prevents or halts the intended behavior of the framework and hence the application.
static ErrorType DacfType.SERVER_FRAMEWORK
          The error message describes an error condition that exists as a result of an anticipated state or action within the server portion of the framework that prevents or halts the intended behavior of the framework and hence the application.
 

Methods in oracle.dacf.dataset that return ErrorType
 ErrorType ExceptionProcessorEvent.getType()
          Returns the type value for the exception.
 

Methods in oracle.dacf.dataset with parameters of type ErrorType
static void ExceptionProcessor.processException(javax.infobus.DataItem dataItem, int rowNum, java.lang.Exception except, ErrorType type, ErrorSeverity severity)
          A method to process a generic exception which also specifies an error type and severity.
static void ExceptionProcessor.processCSException(javax.infobus.DataItem dataItem, int rowNum, oracle.jbo.JboException csExcept, ErrorType type, ErrorSeverity severity)
          Processes a Java Business Objects-specific exception using a specified error type and severity.
 

Constructors in oracle.dacf.dataset with parameters of type ErrorType
ExceptionProcessorEvent(java.lang.Object source, int rowNum, java.lang.Exception except, ErrorType type, ErrorSeverity severity)
           
ExceptionProcessorEvent(java.lang.Object source, int rowNum, java.lang.Exception except, ErrorType type, ErrorSeverity severity, java.lang.String msg)
           
 

Uses of ErrorType in oracle.dacf.style
 

Subclasses of ErrorType in oracle.dacf.style
 class StyleType
          The StyleType defines the Style Error type
 

Fields in oracle.dacf.style declared as ErrorType
static ErrorType StyleType.STYLE
          This is the only Style Error type.
 

Uses of ErrorType in oracle.dacf.util.errorloggers
 

Methods in oracle.dacf.util.errorloggers with parameters of type ErrorType
 void DacfErrorPopupLogger.addTypeDefinition(ErrorType type)
          Sets all of the type definitions for which you want the logger to popup an error message.
 void DacfErrorPopupLogger.removeTypeDefinition(ErrorType type)
          Removes an error type definition from the table.
 

Uses of ErrorType in oracle.dacf.util.errormanager
 

Fields in oracle.dacf.util.errormanager declared as ErrorType
static ErrorType ErrorType.ALL_TYPES
          Used by filters to map all error types.
static ErrorType ErrorType.UNDEFINED
          Used to indicate an uncategorized error type.
 

Methods in oracle.dacf.util.errormanager that return ErrorType
 ErrorType ErrorMessage.getType()
          Returns the error type for this error message.
 

Methods in oracle.dacf.util.errormanager with parameters of type ErrorType
 ErrorMessage[] ErrorLoggerAdapter.findErrors(ErrorSeverity severity, ErrorType type)
          A dummy find method for finding errors based on error severity and error type in the logging facility.
 void ErrorMessage.setType(ErrorType type)
          Specifies the the error type for this error message.
 ErrorMessage[] ErrorLogger.findErrors(ErrorSeverity severity, ErrorType type)
          Finds all errors of the specified severity and type, and returns an array of error messages.
 

Constructors in oracle.dacf.util.errormanager with parameters of type ErrorType
ErrorMessage(java.lang.Object source, ErrorType type, ErrorSeverity severity, ErrorMessageText messageText)
          Public constructor for the generic, context-less error message.
ErrorMessage(java.lang.Object source, ErrorType type, ErrorSeverity severity, ErrorMessageText messageText, ErrorMessageContext context)
          Public constructor which requires context-specific information to extend the error message.
 


Oracle Data-aware Controls Reference