@Deprecated
public class UserPropertyValidationManager
extends java.lang.Object
<offline-database-hook xmlns="http://xmlns.oracle.com/ide/db/extension">
<property-validators>
<property-validator>
<property>properties/oracle.jdevimpl.offlinedb.userprops.UserPropertyDefn/MyUDP</property>
<validator-class>oracle.example.offlinedb.MyUDPValidator</validator-class>
</property-validator>
</property-validators>
</offline-database-hook>
Ensure that the class registered subclasses AbstractUserPropertyValidator.| Constructor and Description |
|---|
UserPropertyValidationManager()
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
static void |
registerExtraValidator(java.lang.String userProperty,
java.lang.String type,
AbstractUserPropertyValidator v)
Deprecated.
Registers a validator for a user defined property.
|
static void |
unregisterExtraValidator(java.lang.String userProperty,
java.lang.String type,
AbstractUserPropertyValidator v)
Deprecated.
Unregisters a validator for a user defined property.
|
public static void registerExtraValidator(java.lang.String userProperty,
java.lang.String type,
AbstractUserPropertyValidator v)
userProperty - the user property name that the validator is being
registered againsttype - the object type that the validator is being registered against,
or null to register for all object types.v - the validator being registered.public static void unregisterExtraValidator(java.lang.String userProperty,
java.lang.String type,
AbstractUserPropertyValidator v)
userProperty - the user property name that the validator is registered
againsttype - the type the validator is registered against, or null if it
is registered for all objects.v - the validator to unregister.