Oracle Data-aware Controls Reference

oracle.dacf.dataset
Class DacfType

java.lang.Object
  |
  +--oracle.dacf.util.errormanager.ErrorType
        |
        +--oracle.dacf.dataset.DacfType
All Implemented Interfaces:
ErrorAttribute

public class DacfType
extends ErrorType

The DacfType class extends ErrorType to define the DACF error types. DACF error types describe some anticipated state or action within either the client or server portion of the application or framework.

DacfType defines these error types:

From ErrorTypes, this class inherits:

Subclass DacfType to define your own DACF error types

Version:
SDK
See Also:
ErrorType

Field Summary
static ErrorType 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 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 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 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.
static ErrorType USER
          The error message describes an error condition that exists as a result of user action.
 
Fields inherited from class oracle.dacf.util.errormanager.ErrorType
_type, ALL_TYPES, UNDEFINED
 
Methods inherited from class oracle.dacf.util.errormanager.ErrorType
getLabel, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

USER

public static final ErrorType USER
The error message describes an error condition that exists as a result of user action. A typical use would be for an ErrorMessage created in response to a validation failure.


CLIENT_APPLICATION

public static final ErrorType 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. This type of error usually is not the direct result of user action.


SERVER_APPLICATION

public static final ErrorType 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. This type of error usually is not the direct result of user action.


CLIENT_FRAMEWORK

public static final ErrorType 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. This type of error usually is not the direct result of user action.


SERVER_FRAMEWORK

public static final ErrorType 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. This type of error usually is not the direct result of user action.


Oracle Data-aware Controls Reference