@Retention(value=RUNTIME) @Target(value=TYPE) @Constraint(validatedBy=NoValidationValidator.class) public @interface NoValidation
@Valid
or @Constraint
have a validator class generated. However all of DMN's connectors extend classes that use @Valid
but do not
themselves use JSR303 annotations and hence do not have validators generated. This causes problems when Errai
attempts to validate the whole graph. This annotation is therefore used to fool Errai into generating a
validator that does nothing.Copyright © 2001–2019 JBoss by Red Hat. All rights reserved.