Uses of Package
jakarta.validation
-
Packages that use jakarta.validation Package Description jakarta.validation Top level package of the Jakarta Bean Validation API.jakarta.validation.bootstrap Package containing bootstrap specific objects.jakarta.validation.constraints Contains all the Jakarta Bean Validation provided constraints also called built-in constraints.jakarta.validation.executable Package related to the control and execution of executable validation.jakarta.validation.metadata Package containing all objects specifically used and returned by the metadata API.jakarta.validation.spi Package containing objects specific to the interaction between the Jakarta Bean Validation bootstrapping process and Jakarta Bean Validation providers.jakarta.validation.valueextraction Package containing objects dedicated to extract values to validate from containers.org.apache.cxf.validation org.hibernate.validator Bootstrap classes HibernateValidator and HibernateValidatorConfiguration which uniquely identify Hibernate Validator and allow to configure it.org.hibernate.validator.cdi.internal Classes for enabling Bean Validation CDI integration.org.hibernate.validator.cdi.internal.util org.hibernate.validator.cfg.context Contains facet and creational context interfaces forming the API for programmatic constraint definition.org.hibernate.validator.constraints Hibernate Validator specific constraints.org.hibernate.validator.constraints.br Hibernate Validator Brazilian constraints.org.hibernate.validator.constraints.pl Hibernate Validator Polish constraints.org.hibernate.validator.constraints.ru Hibernate Validator Russian constraints.org.hibernate.validator.constraints.time Hibernate ValidatorDurationconstraints.org.hibernate.validator.constraintvalidation Custom Hibernate Validator specific constraint validation extension classes.org.hibernate.validator.constraintvalidators org.hibernate.validator.engine org.hibernate.validator.internal.constraintvalidators org.hibernate.validator.internal.constraintvalidators.bv Implementations of the Bean Validation built-in constraints.org.hibernate.validator.internal.constraintvalidators.bv.money org.hibernate.validator.internal.constraintvalidators.bv.notempty Implementations of the Bean ValidationNotEmptyconstraint.org.hibernate.validator.internal.constraintvalidators.bv.number.bound ContainsConstraintValidatorimplementations for min and max constraints for numbers.org.hibernate.validator.internal.constraintvalidators.bv.number.bound.decimal org.hibernate.validator.internal.constraintvalidators.bv.number.sign ContainsConstraintValidatorimplementations forPositive,PositiveOrZero,NegativeandNegativeOrZeroconstraints.org.hibernate.validator.internal.constraintvalidators.bv.size Implementations of the Bean ValidationSizeconstraint.org.hibernate.validator.internal.constraintvalidators.bv.time Constraint validator implementations of the Bean Validation time related constraints.org.hibernate.validator.internal.constraintvalidators.bv.time.future Constraint validator implementations of the Bean ValidationFutureconstraint.org.hibernate.validator.internal.constraintvalidators.bv.time.futureorpresent Constraint validator implementations of the Bean ValidationFutureOrPresentconstraint.org.hibernate.validator.internal.constraintvalidators.bv.time.past Constraint validator implementations of the Bean ValidationPastconstraint.org.hibernate.validator.internal.constraintvalidators.bv.time.pastorpresent Constraint validator implementations of the Bean ValidationPastOrPresentconstraint.org.hibernate.validator.internal.constraintvalidators.hv Implementations of Hibernate Validator specific constraints.org.hibernate.validator.internal.constraintvalidators.hv.br org.hibernate.validator.internal.constraintvalidators.hv.pl org.hibernate.validator.internal.constraintvalidators.hv.ru org.hibernate.validator.internal.constraintvalidators.hv.time org.hibernate.validator.internal.engine Implementations for the core interfaces of Jakarta Bean Validation.org.hibernate.validator.internal.engine.constraintvalidation Classes dealing with the representation of constraints and the management/instantitation of constraint validators.org.hibernate.validator.internal.engine.groups Helper classes for the processing of groups.org.hibernate.validator.internal.engine.messageinterpolation Helper classes for message interpolation.org.hibernate.validator.internal.engine.messageinterpolation.parser Classes related to parsing a message descriptor and extracting interpolation terms.org.hibernate.validator.internal.engine.path Classes related to the Path.Node API.org.hibernate.validator.internal.engine.resolver Various implementations of the TraversableResolver interface.org.hibernate.validator.internal.engine.validationcontext Contains various implementation of validation contexts and supporting classes.org.hibernate.validator.internal.metadata.aggregated The classes in this package contain the aggregated meta data needed for an actual validation.org.hibernate.validator.internal.metadata.descriptor Implementation of the Bean Validation meta data API.org.hibernate.validator.internal.util Independent helper classes.org.hibernate.validator.internal.util.annotation Annotation proxy and descriptor.org.hibernate.validator.internal.util.logging Logging classes.org.hibernate.validator.internal.xml.config org.hibernate.validator.messageinterpolation Implementations of the MessageInterpolator interface in particular ResourceBundleMessageInterpolator which can be used by custom implementations of the interface for delegation.org.hibernate.validator.parameternameprovider Custom Hibernate Validatorjakarta.validation.ParameterNameProviderimplementations.org.hibernate.validator.path Hibernate Validator extensions aroundjakarta.validation.Path.org.hibernate.validator.spi.scripting This package provides support for customization of the script evaluation forScriptAssertandParameterScriptAssertconstraints.org.jboss.resteasy.api.validation org.jboss.resteasy.plugins.validation org.jboss.resteasy.plugins.validation.i18n org.jboss.resteasy.resteasy_jaxrs.i18n -
Classes in jakarta.validation used by jakarta.validation Class Description BootstrapConfiguration Represents the user specified default configuration inMETA-INF/validation.xml.ClockProvider Contract for obtaining theClockused as the reference fornowwhen validating the@Futureand@Pastconstraints.Configuration Receives configuration information, selects the appropriate Jakarta Bean Validation provider and builds the appropriateValidatorFactory.ConstraintDeclarationException Exception raised if a constraint declaration is not legal.ConstraintTarget Defines the constraint target.ConstraintValidator Defines the logic to validate a given constraintAfor a given object typeT.ConstraintValidatorContext Provides contextual data and operation when applying a given constraint validator.ConstraintValidatorContext.ConstraintViolationBuilder ConstraintViolationbuilder allowing to optionally associate the violation report to a sub path.ConstraintValidatorContext.ConstraintViolationBuilder.ContainerElementNodeBuilderCustomizableContext Represents a container element node whose context is configurable (i.e.ConstraintValidatorContext.ConstraintViolationBuilder.ContainerElementNodeBuilderDefinedContext Represents a container element node whose context is known (i.e.ConstraintValidatorContext.ConstraintViolationBuilder.ContainerElementNodeContextBuilder Represents refinement choices for a container element node.ConstraintValidatorContext.ConstraintViolationBuilder.LeafNodeBuilderCustomizableContext Represents a node whose context is configurable (i.e.ConstraintValidatorContext.ConstraintViolationBuilder.LeafNodeBuilderDefinedContext Represents a node whose context is known (i.e.ConstraintValidatorContext.ConstraintViolationBuilder.LeafNodeContextBuilder Represents refinement choices for a node which is in an iterable, e.g.ConstraintValidatorContext.ConstraintViolationBuilder.NodeBuilderCustomizableContext Represents a node whose context is configurable (i.e.ConstraintValidatorContext.ConstraintViolationBuilder.NodeBuilderDefinedContext Represents a node whose context is known (i.e.ConstraintValidatorContext.ConstraintViolationBuilder.NodeContextBuilder Represents refinement choices for a node which is in an iterable, e.g.ConstraintValidatorFactory Instantiates aConstraintValidatorinstance based off its class.ConstraintViolation Describes a constraint violation.ElementKind Enum of possible kinds of elements encountered in Jakarta Bean Validation.MessageInterpolator Interpolates a given constraint violation message.MessageInterpolator.Context Information related to the interpolation context.OverridesAttribute Marks an attribute as overriding the attribute of a composing constraint.ParameterNameProvider Provides names for method and constructor parameters.Path Represents the navigation path from an object to another in an object graph.Path.Node Represents an element of a navigation path.TraversableResolver Contract determining if a property can be accessed by the Jakarta Bean Validation provider.ValidationException Base exception of all Jakarta Bean Validation "unexpected" problems.Validator Validates bean instances.ValidatorContext Represents the context that is used to createValidatorinstances.ValidatorFactory Factory returning initializedValidatorinstances. -
Classes in jakarta.validation used by jakarta.validation.bootstrap Class Description Configuration Receives configuration information, selects the appropriate Jakarta Bean Validation provider and builds the appropriateValidatorFactory.ValidationProviderResolver Determines the list of Jakarta Bean Validation providers available in the runtime environment -
Classes in jakarta.validation used by jakarta.validation.constraints Class Description Constraint Marks an annotation as being a Jakarta Bean Validation constraint.Payload Payload type that can be attached to a given constraint declaration. -
Classes in jakarta.validation used by jakarta.validation.executable Class Description ConstraintViolation Describes a constraint violation. -
Classes in jakarta.validation used by jakarta.validation.metadata Class Description ConstraintTarget Defines the constraint target.ConstraintValidator Defines the logic to validate a given constraintAfor a given object typeT.Payload Payload type that can be attached to a given constraint declaration. -
Classes in jakarta.validation used by jakarta.validation.spi Class Description ClockProvider Contract for obtaining theClockused as the reference fornowwhen validating the@Futureand@Pastconstraints.Configuration Receives configuration information, selects the appropriate Jakarta Bean Validation provider and builds the appropriateValidatorFactory.ConstraintValidatorFactory Instantiates aConstraintValidatorinstance based off its class.MessageInterpolator Interpolates a given constraint violation message.ParameterNameProvider Provides names for method and constructor parameters.TraversableResolver Contract determining if a property can be accessed by the Jakarta Bean Validation provider.ValidationProviderResolver Determines the list of Jakarta Bean Validation providers available in the runtime environmentValidatorFactory Factory returning initializedValidatorinstances. -
Classes in jakarta.validation used by jakarta.validation.valueextraction Class Description Payload Payload type that can be attached to a given constraint declaration.ValidationException Base exception of all Jakarta Bean Validation "unexpected" problems. -
Classes in jakarta.validation used by org.apache.cxf.validation Class Description ConstraintValidatorFactory Instantiates aConstraintValidatorinstance based off its class.ConstraintViolation Describes a constraint violation.ConstraintViolationException Reports the result of constraint violations.MessageInterpolator Interpolates a given constraint violation message.ParameterNameProvider Provides names for method and constructor parameters.TraversableResolver Contract determining if a property can be accessed by the Jakarta Bean Validation provider.ValidationException Base exception of all Jakarta Bean Validation "unexpected" problems.ValidationProviderResolver Determines the list of Jakarta Bean Validation providers available in the runtime environmentValidator Validates bean instances.ValidatorFactory Factory returning initializedValidatorinstances. -
Classes in jakarta.validation used by org.hibernate.validator Class Description ClockProvider Contract for obtaining theClockused as the reference fornowwhen validating the@Futureand@Pastconstraints.Configuration Receives configuration information, selects the appropriate Jakarta Bean Validation provider and builds the appropriateValidatorFactory.ConstraintValidatorFactory Instantiates aConstraintValidatorinstance based off its class.MessageInterpolator Interpolates a given constraint violation message.ParameterNameProvider Provides names for method and constructor parameters.TraversableResolver Contract determining if a property can be accessed by the Jakarta Bean Validation provider.ValidatorContext Represents the context that is used to createValidatorinstances.ValidatorFactory Factory returning initializedValidatorinstances. -
Classes in jakarta.validation used by org.hibernate.validator.cdi.internal Class Description ConstraintValidator Defines the logic to validate a given constraintAfor a given object typeT.ConstraintValidatorFactory Instantiates aConstraintValidatorinstance based off its class.Validator Validates bean instances.ValidatorFactory Factory returning initializedValidatorinstances. -
Classes in jakarta.validation used by org.hibernate.validator.cdi.internal.util Class Description ValidatorFactory Factory returning initializedValidatorinstances. -
Classes in jakarta.validation used by org.hibernate.validator.cfg.context Class Description ConstraintValidator Defines the logic to validate a given constraintAfor a given object typeT. -
Classes in jakarta.validation used by org.hibernate.validator.constraints Class Description Constraint Marks an annotation as being a Jakarta Bean Validation constraint.OverridesAttribute Marks an attribute as overriding the attribute of a composing constraint.Payload Payload type that can be attached to a given constraint declaration.ReportAsSingleViolation A constraint annotation hosting this annotation will return the composed annotation error report if any of the composing annotations fail. -
Classes in jakarta.validation used by org.hibernate.validator.constraints.br Class Description Constraint Marks an annotation as being a Jakarta Bean Validation constraint.Payload Payload type that can be attached to a given constraint declaration.ReportAsSingleViolation A constraint annotation hosting this annotation will return the composed annotation error report if any of the composing annotations fail. -
Classes in jakarta.validation used by org.hibernate.validator.constraints.pl Class Description Constraint Marks an annotation as being a Jakarta Bean Validation constraint.Payload Payload type that can be attached to a given constraint declaration.ReportAsSingleViolation A constraint annotation hosting this annotation will return the composed annotation error report if any of the composing annotations fail. -
Classes in jakarta.validation used by org.hibernate.validator.constraints.ru Class Description Constraint Marks an annotation as being a Jakarta Bean Validation constraint.Payload Payload type that can be attached to a given constraint declaration.ReportAsSingleViolation A constraint annotation hosting this annotation will return the composed annotation error report if any of the composing annotations fail. -
Classes in jakarta.validation used by org.hibernate.validator.constraints.time Class Description Constraint Marks an annotation as being a Jakarta Bean Validation constraint.Payload Payload type that can be attached to a given constraint declaration.ReportAsSingleViolation A constraint annotation hosting this annotation will return the composed annotation error report if any of the composing annotations fail. -
Classes in jakarta.validation used by org.hibernate.validator.constraintvalidation Class Description ClockProvider Contract for obtaining theClockused as the reference fornowwhen validating the@Futureand@Pastconstraints.ConstraintValidator Defines the logic to validate a given constraintAfor a given object typeT.ConstraintValidatorContext Provides contextual data and operation when applying a given constraint validator.ConstraintValidatorContext.ConstraintViolationBuilder ConstraintViolationbuilder allowing to optionally associate the violation report to a sub path. -
Classes in jakarta.validation used by org.hibernate.validator.constraintvalidators Class Description ConstraintValidator Defines the logic to validate a given constraintAfor a given object typeT.ConstraintValidatorContext Provides contextual data and operation when applying a given constraint validator. -
Classes in jakarta.validation used by org.hibernate.validator.engine Class Description ConstraintViolation Describes a constraint violation. -
Classes in jakarta.validation used by org.hibernate.validator.internal.constraintvalidators Class Description ConstraintValidator Defines the logic to validate a given constraintAfor a given object typeT.ConstraintValidatorContext Provides contextual data and operation when applying a given constraint validator. -
Classes in jakarta.validation used by org.hibernate.validator.internal.constraintvalidators.bv Class Description ConstraintValidator Defines the logic to validate a given constraintAfor a given object typeT.ConstraintValidatorContext Provides contextual data and operation when applying a given constraint validator. -
Classes in jakarta.validation used by org.hibernate.validator.internal.constraintvalidators.bv.money Class Description ConstraintValidator Defines the logic to validate a given constraintAfor a given object typeT.ConstraintValidatorContext Provides contextual data and operation when applying a given constraint validator. -
Classes in jakarta.validation used by org.hibernate.validator.internal.constraintvalidators.bv.notempty Class Description ConstraintValidator Defines the logic to validate a given constraintAfor a given object typeT.ConstraintValidatorContext Provides contextual data and operation when applying a given constraint validator. -
Classes in jakarta.validation used by org.hibernate.validator.internal.constraintvalidators.bv.number.bound Class Description ConstraintValidator Defines the logic to validate a given constraintAfor a given object typeT.ConstraintValidatorContext Provides contextual data and operation when applying a given constraint validator. -
Classes in jakarta.validation used by org.hibernate.validator.internal.constraintvalidators.bv.number.bound.decimal Class Description ConstraintValidator Defines the logic to validate a given constraintAfor a given object typeT.ConstraintValidatorContext Provides contextual data and operation when applying a given constraint validator. -
Classes in jakarta.validation used by org.hibernate.validator.internal.constraintvalidators.bv.number.sign Class Description ConstraintValidator Defines the logic to validate a given constraintAfor a given object typeT.ConstraintValidatorContext Provides contextual data and operation when applying a given constraint validator. -
Classes in jakarta.validation used by org.hibernate.validator.internal.constraintvalidators.bv.size Class Description ConstraintValidator Defines the logic to validate a given constraintAfor a given object typeT.ConstraintValidatorContext Provides contextual data and operation when applying a given constraint validator. -
Classes in jakarta.validation used by org.hibernate.validator.internal.constraintvalidators.bv.time Class Description ConstraintValidator Defines the logic to validate a given constraintAfor a given object typeT.ConstraintValidatorContext Provides contextual data and operation when applying a given constraint validator. -
Classes in jakarta.validation used by org.hibernate.validator.internal.constraintvalidators.bv.time.future Class Description ConstraintValidator Defines the logic to validate a given constraintAfor a given object typeT. -
Classes in jakarta.validation used by org.hibernate.validator.internal.constraintvalidators.bv.time.futureorpresent Class Description ConstraintValidator Defines the logic to validate a given constraintAfor a given object typeT. -
Classes in jakarta.validation used by org.hibernate.validator.internal.constraintvalidators.bv.time.past Class Description ConstraintValidator Defines the logic to validate a given constraintAfor a given object typeT. -
Classes in jakarta.validation used by org.hibernate.validator.internal.constraintvalidators.bv.time.pastorpresent Class Description ConstraintValidator Defines the logic to validate a given constraintAfor a given object typeT. -
Classes in jakarta.validation used by org.hibernate.validator.internal.constraintvalidators.hv Class Description ConstraintValidator Defines the logic to validate a given constraintAfor a given object typeT.ConstraintValidatorContext Provides contextual data and operation when applying a given constraint validator. -
Classes in jakarta.validation used by org.hibernate.validator.internal.constraintvalidators.hv.br Class Description ConstraintValidator Defines the logic to validate a given constraintAfor a given object typeT.ConstraintValidatorContext Provides contextual data and operation when applying a given constraint validator. -
Classes in jakarta.validation used by org.hibernate.validator.internal.constraintvalidators.hv.pl Class Description ConstraintValidator Defines the logic to validate a given constraintAfor a given object typeT. -
Classes in jakarta.validation used by org.hibernate.validator.internal.constraintvalidators.hv.ru Class Description ConstraintValidator Defines the logic to validate a given constraintAfor a given object typeT.ConstraintValidatorContext Provides contextual data and operation when applying a given constraint validator. -
Classes in jakarta.validation used by org.hibernate.validator.internal.constraintvalidators.hv.time Class Description ConstraintValidator Defines the logic to validate a given constraintAfor a given object typeT.ConstraintValidatorContext Provides contextual data and operation when applying a given constraint validator. -
Classes in jakarta.validation used by org.hibernate.validator.internal.engine Class Description BootstrapConfiguration Represents the user specified default configuration inMETA-INF/validation.xml.ClockProvider Contract for obtaining theClockused as the reference fornowwhen validating the@Futureand@Pastconstraints.Configuration Receives configuration information, selects the appropriate Jakarta Bean Validation provider and builds the appropriateValidatorFactory.ConstraintValidatorFactory Instantiates aConstraintValidatorinstance based off its class.ConstraintViolation Describes a constraint violation.MessageInterpolator Interpolates a given constraint violation message.MessageInterpolator.Context Information related to the interpolation context.ParameterNameProvider Provides names for method and constructor parameters.Path Represents the navigation path from an object to another in an object graph.TraversableResolver Contract determining if a property can be accessed by the Jakarta Bean Validation provider.Validator Validates bean instances.ValidatorContext Represents the context that is used to createValidatorinstances.ValidatorFactory Factory returning initializedValidatorinstances. -
Classes in jakarta.validation used by org.hibernate.validator.internal.engine.groups Class Description GroupDefinitionException Exception raised if a group definition is not legal. -
Classes in jakarta.validation used by org.hibernate.validator.internal.engine.messageinterpolation Class Description MessageInterpolator.Context Information related to the interpolation context. -
Classes in jakarta.validation used by org.hibernate.validator.internal.engine.messageinterpolation.parser Class Description ValidationException Base exception of all Jakarta Bean Validation "unexpected" problems. -
Classes in jakarta.validation used by org.hibernate.validator.internal.engine.path Class Description ElementKind Enum of possible kinds of elements encountered in Jakarta Bean Validation.Path Represents the navigation path from an object to another in an object graph.Path.BeanNode Node representing a bean.Path.ConstructorNode Node representing a constructor.Path.ContainerElementNode Node representing an element in a generic container such asOptional,ListorMap.Path.CrossParameterNode Node representing the element holding cross-parameter constraints of a method or constructor.Path.MethodNode Node representing a method.Path.Node Represents an element of a navigation path.Path.ParameterNode Node representing a parameter of a method or constructor.Path.PropertyNode Node representing a property.Path.ReturnValueNode Node representing the return value of a method or constructor. -
Classes in jakarta.validation used by org.hibernate.validator.internal.engine.resolver Class Description Path Represents the navigation path from an object to another in an object graph.Path.Node Represents an element of a navigation path.TraversableResolver Contract determining if a property can be accessed by the Jakarta Bean Validation provider. -
Classes in jakarta.validation used by org.hibernate.validator.internal.engine.validationcontext Class Description ClockProvider Contract for obtaining theClockused as the reference fornowwhen validating the@Futureand@Pastconstraints.ConstraintValidatorFactory Instantiates aConstraintValidatorinstance based off its class.ConstraintViolation Describes a constraint violation.MessageInterpolator Interpolates a given constraint violation message.Path Represents the navigation path from an object to another in an object graph.TraversableResolver Contract determining if a property can be accessed by the Jakarta Bean Validation provider. -
Classes in jakarta.validation used by org.hibernate.validator.internal.metadata.aggregated Class Description ElementKind Enum of possible kinds of elements encountered in Jakarta Bean Validation. -
Classes in jakarta.validation used by org.hibernate.validator.internal.metadata.descriptor Class Description ConstraintTarget Defines the constraint target.ConstraintValidator Defines the logic to validate a given constraintAfor a given object typeT.Payload Payload type that can be attached to a given constraint declaration. -
Classes in jakarta.validation used by org.hibernate.validator.internal.util Class Description ConstraintValidator Defines the logic to validate a given constraintAfor a given object typeT.ParameterNameProvider Provides names for method and constructor parameters. -
Classes in jakarta.validation used by org.hibernate.validator.internal.util.annotation Class Description ConstraintTarget Defines the constraint target.Payload Payload type that can be attached to a given constraint declaration. -
Classes in jakarta.validation used by org.hibernate.validator.internal.util.logging Class Description ClockProvider Contract for obtaining theClockused as the reference fornowwhen validating the@Futureand@Pastconstraints.ConstraintDeclarationException Exception raised if a constraint declaration is not legal.ConstraintDefinitionException Exception raised if a constraint definition is not legal.ConstraintTarget Defines the constraint target.ConstraintValidator Defines the logic to validate a given constraintAfor a given object typeT.ConstraintValidatorFactory Instantiates aConstraintValidatorinstance based off its class.ElementKind Enum of possible kinds of elements encountered in Jakarta Bean Validation.GroupDefinitionException Exception raised if a group definition is not legal.MessageInterpolator Interpolates a given constraint violation message.ParameterNameProvider Provides names for method and constructor parameters.Path Represents the navigation path from an object to another in an object graph.TraversableResolver Contract determining if a property can be accessed by the Jakarta Bean Validation provider.UnexpectedTypeException Exception raised in the case that the constraint validator resolution cannot determine a suitable validator for a given type.ValidationException Base exception of all Jakarta Bean Validation "unexpected" problems. -
Classes in jakarta.validation used by org.hibernate.validator.internal.xml.config Class Description BootstrapConfiguration Represents the user specified default configuration inMETA-INF/validation.xml.ClockProvider Contract for obtaining theClockused as the reference fornowwhen validating the@Futureand@Pastconstraints.ConstraintValidatorFactory Instantiates aConstraintValidatorinstance based off its class.MessageInterpolator Interpolates a given constraint violation message.ParameterNameProvider Provides names for method and constructor parameters.TraversableResolver Contract determining if a property can be accessed by the Jakarta Bean Validation provider. -
Classes in jakarta.validation used by org.hibernate.validator.messageinterpolation Class Description MessageInterpolator Interpolates a given constraint violation message.MessageInterpolator.Context Information related to the interpolation context.Path Represents the navigation path from an object to another in an object graph. -
Classes in jakarta.validation used by org.hibernate.validator.parameternameprovider Class Description ParameterNameProvider Provides names for method and constructor parameters. -
Classes in jakarta.validation used by org.hibernate.validator.path Class Description Path.ContainerElementNode Node representing an element in a generic container such asOptional,ListorMap.Path.Node Represents an element of a navigation path.Path.PropertyNode Node representing a property. -
Classes in jakarta.validation used by org.hibernate.validator.spi.scripting Class Description ValidationException Base exception of all Jakarta Bean Validation "unexpected" problems. -
Classes in jakarta.validation used by org.jboss.resteasy.api.validation Class Description ConstraintViolation Describes a constraint violation.ConstraintViolationException Reports the result of constraint violations.ValidationException Base exception of all Jakarta Bean Validation "unexpected" problems. -
Classes in jakarta.validation used by org.jboss.resteasy.plugins.validation Class Description ConstraintViolation Describes a constraint violation.ConstraintViolationException Reports the result of constraint violations.MessageInterpolator Interpolates a given constraint violation message.MessageInterpolator.Context Information related to the interpolation context.ValidationException Base exception of all Jakarta Bean Validation "unexpected" problems.Validator Validates bean instances.ValidatorFactory Factory returning initializedValidatorinstances. -
Classes in jakarta.validation used by org.jboss.resteasy.plugins.validation.i18n Class Description ValidatorFactory Factory returning initializedValidatorinstances. -
Classes in jakarta.validation used by org.jboss.resteasy.resteasy_jaxrs.i18n Class Description ElementKind Enum of possible kinds of elements encountered in Jakarta Bean Validation.