Uses of Class
org.apache.cayenne.validation.ValidationResult

Packages that use ValidationResult
org.apache.cayenne Contains persistence APIs directly accessible by users. 
org.apache.cayenne.access Contains classes that make up Cayenne ORM stack. 
org.apache.cayenne.access.types Defines an extendable mechanism to map Java types to JDBC types. 
org.apache.cayenne.jpa.conf   
org.apache.cayenne.validation   
 

Uses of ValidationResult in org.apache.cayenne
 

Methods in org.apache.cayenne with parameters of type ValidationResult
 void CayenneDataObject.validateForDelete(ValidationResult validationResult)
          This implementation does nothing.
 void Validating.validateForDelete(ValidationResult validationResult)
          Performs property validation of the DELETED object, appending any validation failures to the provided validationResult object.
 void CayenneDataObject.validateForInsert(ValidationResult validationResult)
          Calls CayenneDataObject.validateForSave(ValidationResult).
 void Validating.validateForInsert(ValidationResult validationResult)
          Performs property validation of the NEW object, appending any validation failures to the provided validationResult object.
protected  void CayenneDataObject.validateForSave(ValidationResult validationResult)
          Performs property validation of the object, appending any validation failures to the provided validationResult object.
 void CayenneDataObject.validateForUpdate(ValidationResult validationResult)
          Calls CayenneDataObject.validateForSave(ValidationResult).
 void Validating.validateForUpdate(ValidationResult validationResult)
          Performs property validation of the MODIFIED object, appending any validation failures to the provided validationResult object.
 

Uses of ValidationResult in org.apache.cayenne.access
 

Fields in org.apache.cayenne.access declared as ValidationResult
protected  ValidationResult DbGenerator.failures
           
 

Methods in org.apache.cayenne.access that return ValidationResult
 ValidationResult DbGenerator.getFailures()
          Returns an object representing a collection of failures that occurred on the last "runGenerator" invocation, or null if there were no failures.
 

Uses of ValidationResult in org.apache.cayenne.access.types
 

Methods in org.apache.cayenne.access.types with parameters of type ValidationResult
static boolean AbstractType.validateNull(Object source, String property, Object value, DbAttribute dbAttribute, ValidationResult validationResult)
          Deprecated. since 3.0 as validation should not be done at the DataNode level.
 boolean AbstractType.validateProperty(Object source, String property, Object value, DbAttribute dbAttribute, ValidationResult validationResult)
          Deprecated. since 3.0 as validation should not be done at the DataNode level.
 boolean BigIntegerType.validateProperty(Object source, String property, Object value, DbAttribute dbAttribute, ValidationResult validationResult)
          Deprecated. since 3.0 as validation should not be done at the DataNode level.
 boolean BooleanType.validateProperty(Object source, String property, Object value, DbAttribute dbAttribute, ValidationResult validationResult)
          Deprecated. since 3.0 as validation should not be done at the DataNode level.
 boolean ByteArrayType.validateProperty(Object source, String property, Object value, DbAttribute dbAttribute, ValidationResult validationResult)
          Deprecated. since 3.0 as validation should not be done at the DataNode level.
 boolean CalendarType.validateProperty(Object source, String property, Object value, DbAttribute dbAttribute, ValidationResult validationResult)
          Deprecated. since 3.0 as validation should not be done at the DataNode level.
 boolean CharType.validateProperty(Object source, String property, Object value, DbAttribute dbAttribute, ValidationResult validationResult)
          Deprecated. since 3.0 as validation should not be done at the DataNode level.
 boolean EnumType.validateProperty(Object source, String property, Object value, DbAttribute dbAttribute, ValidationResult validationResult)
          Deprecated. since 3.0 as validation should not be done at the DataNode level.
 boolean ExtendedType.validateProperty(Object source, String property, Object value, DbAttribute dbAttribute, ValidationResult validationResult)
          Deprecated. since 3.0 as validation should not be done at the DataNode level.
 boolean UtilDateType.validateProperty(Object source, String property, Object value, DbAttribute dbAttribute, ValidationResult validationResult)
          Deprecated. since 3.0 as validation should not be done at the DataNode level.
 

Uses of ValidationResult in org.apache.cayenne.jpa.conf
 

Fields in org.apache.cayenne.jpa.conf declared as ValidationResult
protected  ValidationResult EntityMapLoaderContext.conflicts
           
 

Methods in org.apache.cayenne.jpa.conf that return ValidationResult
 ValidationResult EntityMapLoaderContext.getConflicts()
           
 

Uses of ValidationResult in org.apache.cayenne.validation
 

Methods in org.apache.cayenne.validation that return ValidationResult
 ValidationResult ValidationException.getValidationResult()
           
 

Constructors in org.apache.cayenne.validation with parameters of type ValidationResult
ValidationException(String message, ValidationResult result)
           
ValidationException(ValidationResult result)
           
 



Copyright © 2001-2007 Apache Cayenne. All Rights Reserved.