Package wt.verification
Interface Verifier
public interface Verifier
This interface specifies a method for verifying a single Persistable or a
collection of Persistables.
Supported API: true
Extendable: true
Supported API: true
Extendable: true
-
Method Summary
Modifier and TypeMethodDescriptionbooleanverify(WTCollection a_objects) This method verifies the specified collection of Persistables.booleanverify(Persistable a_object) This method verifies the the specified Persistable.
-
Method Details
-
verify
This method verifies the the specified Persistable.
Supported API: true- Parameters:
a_object- object to verify- Returns:
- true if the Persistable is verified.
- Throws:
WTException
-
verify
This method verifies the specified collection of Persistables.
Supported API: true- Parameters:
a_objects- objects to verify- Returns:
- true if all Persistables are verified.
- Throws:
WTException
-