Uses of Package
javax.validation

Packages that use javax.validation
javax.validation   
javax.validation.bootstrap   
javax.validation.constraints   
javax.validation.spi   
 

Classes in javax.validation used by javax.validation
BeanDescriptor
          Describe a constrained Java Bean and the constraints associated to it.
Configuration
          Receives configuration information, selects the appropriate Bean Validation provider and builds the appropriate ValidatorFactory.
ConstraintDeclarationException
          Exception raised if a constraint declaration is not legal
ConstraintDescriptor
          Describes a single constraint and its composing constraints.
ConstraintValidator
          Defines the logic to validate a given constraint A for a given object type T.
ConstraintValidatorContext
          Provide contextual data and operation when applying a given constraint validator
ConstraintValidatorFactory
          Instantiate a ConstraintValidator instance from its class.
ConstraintViolation
          Describe a constraint violation.
ElementDescriptor
          Describes a validated element (class, field or property).
MessageInterpolator
          Interpolate a given constraint error message.
MessageInterpolator.Context
          Informations related to the interpolation context
PropertyDescriptor
          Describes a Java Bean property hosting validation constraints.
TraversableResolver
          Contract determining if a property can be accessed by the Bean Validation provider This contract is called for each property either validated or traversed.
ValidationException
          Base exception of all "unexpected" problems.
Validator
          Validate bean instances.
ValidatorContext
          Return a Validator corresponding to the initialized state.
ValidatorFactory
          Factory returning initialized Validator instances.
 

Classes in javax.validation used by javax.validation.bootstrap
Configuration
          Receives configuration information, selects the appropriate Bean Validation provider and builds the appropriate ValidatorFactory.
ValidationProviderResolver
          Determine the list of Bean Validation providers available in the runtime environment

Bean Validation providers are identified by the presence of META-INF/services/javax.validation.spi.ValidationProvider files following the Service Provider pattern described here

Each META-INF/services/javax.validation.spi.ValidationProvider file contains the list of ValidationProvider implementations each of them representing a provider.

 

Classes in javax.validation used by javax.validation.constraints
Constraint
          Link between a constraint annotation and its constraint validation implementations.
 

Classes in javax.validation used by javax.validation.spi
Configuration
          Receives configuration information, selects the appropriate Bean Validation provider and builds the appropriate ValidatorFactory.
ConstraintValidatorFactory
          Instantiate a ConstraintValidator instance from its class.
MessageInterpolator
          Interpolate a given constraint error message.
TraversableResolver
          Contract determining if a property can be accessed by the Bean Validation provider This contract is called for each property either validated or traversed.
ValidationProviderResolver
          Determine the list of Bean Validation providers available in the runtime environment

Bean Validation providers are identified by the presence of META-INF/services/javax.validation.spi.ValidationProvider files following the Service Provider pattern described here

Each META-INF/services/javax.validation.spi.ValidationProvider file contains the list of ValidationProvider implementations each of them representing a provider.

ValidatorFactory
          Factory returning initialized Validator instances.
 



Copyright © 2007-2009. All Rights Reserved.