oracle.dacf.dataset
Class ValidationAdapter
java.lang.Object
|
+--oracle.dacf.dataset.ValidationAdapter
- All Implemented Interfaces:
- java.util.EventListener, ValidationListener
- public class ValidationAdapter
- extends java.lang.Object
- implements ValidationListener
This class provides a null implementation of the ValidationListener
interface. Listeners that are not interested in receiving
all the ValidationEvent
s should subclass from
ValidationAdapter and override the appropriate methods.
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
ValidationAdapter
public ValidationAdapter()
validateAttribute
public void validateAttribute(ValidationEvent event)
throws ValidationException
- Called to validate column level data changes.
- Specified by:
validateAttribute
in interface ValidationListener
- Parameters:
event
- the event.- Throws:
ValidationException
- if the data is invalid.
validateRow
public void validateRow(ValidationEvent event)
throws ValidationException
- Called to validate row level data changes.
- Specified by:
validateRow
in interface ValidationListener
- Parameters:
event
- the event.- Throws:
ValidationException
- if the data is invalid.
validateRowSet
public void validateRowSet(ValidationEvent event)
throws ValidationException
- Called to validate queryview level data changes.
- Specified by:
validateRowSet
in interface ValidationListener
- Parameters:
event
- the event.- Throws:
ValidationException
- if the data is invalid.
validateSession
public void validateSession(ValidationEvent event)
throws ValidationException
- Called to validate session level data changes.
- Specified by:
validateSession
in interface ValidationListener
- Parameters:
event
- the event.- Throws:
ValidationException
- if the data is invalid.