Conditional Validator

An extension package for Bean Validation 2.0 that adds conditional validations

License

License

GroupId

GroupId

com.github.microtweak
ArtifactId

ArtifactId

conditional-validator
Last Version

Last Version

0.0.2
Release Date

Release Date

Type

Type

pom
Description

Description

Conditional Validator
An extension package for Bean Validation 2.0 that adds conditional validations
Project URL

Project URL

https://github.com/microtweak/conditional-validator
Source Code Management

Source Code Management

https://github.com/microtweak/conditional-validator

Download conditional-validator

How to add to project

<!-- https://jarcasting.com/artifacts/com.github.microtweak/conditional-validator/ -->
<dependency>
    <groupId>com.github.microtweak</groupId>
    <artifactId>conditional-validator</artifactId>
    <version>0.0.2</version>
    <type>pom</type>
</dependency>
// https://jarcasting.com/artifacts/com.github.microtweak/conditional-validator/
implementation 'com.github.microtweak:conditional-validator:0.0.2'
// https://jarcasting.com/artifacts/com.github.microtweak/conditional-validator/
implementation ("com.github.microtweak:conditional-validator:0.0.2")
'com.github.microtweak:conditional-validator:pom:0.0.2'
<dependency org="com.github.microtweak" name="conditional-validator" rev="0.0.2">
  <artifact name="conditional-validator" type="pom" />
</dependency>
@Grapes(
@Grab(group='com.github.microtweak', module='conditional-validator', version='0.0.2')
)
libraryDependencies += "com.github.microtweak" % "conditional-validator" % "0.0.2"
[com.github.microtweak/conditional-validator "0.0.2"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

  • validator-core
  • validator-hv
  • validator-bval

Conditional Validator

Problem

The constraints of the Bean Validation cannot be turned on/off programmatically or according to any condition of the model object.

The @GroupSequenceProvider annotation from Hibernate Validator (RI) allows you to emulate this feature, however, it is a bit boring and tiring implement a class for each validated model object.

Solution

An extension for Bean Validation 2.0 containing analogous annotations for each constraint. For example, if you want to apply @NotNull conditionally use @NotNullWhen(expression = "")

Currently, the constraint expression is provided by Commons Jexl. All provided expression must return a Boolean (true/false).

Whenever the expression returns true, Conditional Validator delegates to the provider (Hibernate Validator or Apache BVal) the corresponding validation. For example, when the @NotNulWhen expression is true, ConditionalValidator tells the provider to validate as @NotNull.

Usage

  1. Add dependency to pom.xml
<!-- If you use Hibernate Validator (RI) -->
<dependency>
    <groupId>com.github.microtweak</groupId>
    <artifactId>conditional-validator-hv</artifactId>
    <version>${conditional-validator.version}</version>
</dependency>

<!-- If you use Apache BVal -->
<dependency>
    <groupId>com.github.microtweak</groupId>
    <artifactId>conditional-validator-bval</artifactId>
    <version>${conditional-validator.version}</version>
</dependency>
  1. Add annotations Conditional Validator
@ConditionalValidate // Enable conditional validation on this class
public class User {

    private boolean notifyByEmail;

    @EmailWhen(expression = "notifyByEmail") // Add the conditional constraint and set the expression
    private String email;
    
    // Getters and Setters
}
com.github.microtweak

Microtweak

Small libraries for micro tweaking (or small features) in frameworks you already know

Versions

Version
0.0.2
0.0.1