Uses of Class
org.apache.bval.util.AccessStrategy

Packages that use AccessStrategy
org.apache.bval   
org.apache.bval.jsr303   
org.apache.bval.jsr303.extensions   
org.apache.bval.jsr303.xml   
org.apache.bval.model   
org.apache.bval.util   
 

Uses of AccessStrategy in org.apache.bval
 

Methods in org.apache.bval that return AccessStrategy
 AccessStrategy BeanValidationContext.getAccess()
          Get the current access strategy.
 

Methods in org.apache.bval with parameters of type AccessStrategy
 Object BeanValidationContext.getPropertyValue(AccessStrategy access)
          Get the value by using the given access strategy.
 void BeanValidationContext.moveDown(MetaProperty prop, AccessStrategy access)
          Step deeper into association at 'prop'
 

Uses of AccessStrategy in org.apache.bval.jsr303
 

Methods in org.apache.bval.jsr303 that return AccessStrategy
 AccessStrategy ConstraintValidation.getAccess()
          Get the AccessStrategy used by this ConstraintValidation.
 

Methods in org.apache.bval.jsr303 that return types with arguments of type AccessStrategy
 List<AccessStrategy> ApacheValidatorFactory.getValidAccesses(Class<?> beanClass)
          Get the AccessStrategy List indicating nested bean validations that must be triggered in the course of validating a beanClass graph.
 

Methods in org.apache.bval.jsr303 with parameters of type AccessStrategy
 boolean AnnotationProcessor.addAccessStrategy(MetaProperty prop, AccessStrategy access)
          Add the specified AccessStrategy to prop; noop if prop == null.
static MetaProperty Jsr303MetaBeanFactory.addMetaProperty(MetaBean parentMetaBean, AccessStrategy access)
          Add a MetaProperty to a MetaBean.
 void ApacheValidatorFactory.addValid(Class<?> beanClass, AccessStrategy accessStrategy)
          Mark a property of beanClass for nested validation.
 void GroupValidationContextImpl.moveDown(MetaProperty prop, AccessStrategy access)
          Step deeper into association at 'prop'
<A extends Annotation>
boolean
AnnotationProcessor.processAnnotation(A annotation, MetaProperty prop, Class<?> owner, AccessStrategy access, AppendValidation appender)
          Process a single annotation.
 boolean AnnotationProcessor.processAnnotations(MetaProperty prop, Class<?> owner, AnnotatedElement element, AccessStrategy access, AppendValidation appender)
          Process JSR303 annotations.
 

Constructors in org.apache.bval.jsr303 with parameters of type AccessStrategy
AnnotationConstraintBuilder(Class<? extends ConstraintValidator<A,?>>[] validatorClasses, ConstraintValidator<A,?> constraintValidator, A annotation, Class<?> owner, AccessStrategy access)
          Create a new AnnotationConstraintBuilder instance.
ConstraintValidation(Class<? extends ConstraintValidator<T,?>>[] validatorClasses, ConstraintValidator<T,?> validator, T annotation, Class<?> owner, AccessStrategy access, boolean reportFromComposite)
          Create a new ConstraintValidation instance.
 

Uses of AccessStrategy in org.apache.bval.jsr303.extensions
 

Subclasses of AccessStrategy in org.apache.bval.jsr303.extensions
 class ParameterAccess
          Implementation of AccessStrategy for method parameters.
 class ReturnAccess
          Implementation of AccessStrategy for method return values.
 

Uses of AccessStrategy in org.apache.bval.jsr303.xml
 

Methods in org.apache.bval.jsr303.xml that return AccessStrategy
 AccessStrategy MetaConstraint.getAccessStrategy()
          Get the access strategy used for the associated property.
 

Uses of AccessStrategy in org.apache.bval.model
 

Methods in org.apache.bval.model that return AccessStrategy
 AccessStrategy ValidationContext.getAccess()
          Get the current access strategy.
 

Methods in org.apache.bval.model with parameters of type AccessStrategy
 Object ValidationContext.getPropertyValue(AccessStrategy access)
          Get the value by using the given access strategy.
 void ValidationContext.moveDown(MetaProperty prop, AccessStrategy access)
          Step deeper into association at 'prop'
 

Uses of AccessStrategy in org.apache.bval.util
 

Subclasses of AccessStrategy in org.apache.bval.util
 class FieldAccess
          Description: direct field access strategy.
 class IndexedAccess
          AccessStrategy to get an indexed member of an Iterable or array object.
 class KeyedAccess
          AccessStrategy to get a keyed value from a Map.
 class MethodAccess
          Description: invoke a zero-argument method (getter)
 class PropertyAccess
          Description: Undefined dynamic strategy (FIELD or METHOD access) Uses PropertyUtils or tries to determine field to access the value
 



Copyright © 2010-2012 Apache Software Foundation. All Rights Reserved.