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.merge   
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 BigDecimalType.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 ByteType.validateProperty(Object source, String property, Object value, DbAttribute dbAttribute, ValidationResult validationResult)
           
 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 DateType.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 DoubleType.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 ExtendedEnumType.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 FloatType.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 IntegerType.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 LongType.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 ObjectType.validateProperty(Object source, String property, Object value, DbAttribute dbAttribute, ValidationResult validationResult)
           
 boolean ShortType.validateProperty(Object source, String property, Object value, DbAttribute dbAttribute, ValidationResult validationResult)
           
 boolean TimestampType.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 TimeType.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.
 boolean UUIDType.validateProperty(Object source, String property, Object value, DbAttribute dbAttribute, ValidationResult validationResult)
          Deprecated. since 3.0
 

Uses of ValidationResult in org.apache.cayenne.merge
 

Methods in org.apache.cayenne.merge that return ValidationResult
 ValidationResult ExecutingMergerContext.getValidationResult()
           
 ValidationResult MergerContext.getValidationResult()
           
 

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-2011 Apache Cayenne. All Rights Reserved.