All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.fashionbrot.validated.test.Custom Maven / Gradle / Ivy

There is a newer version: 2.0.9
Show newest version
package com.github.fashionbrot.validated.test;

import com.github.fashionbrot.validated.constraint.Constraint;

import java.lang.annotation.*;

@Documented
@Target({ElementType.FIELD,  ElementType.PARAMETER})
@Retention(RetentionPolicy.RUNTIME)
@Constraint(validatedBy = {CustomConstraintValidator.class,CustomConstraintValidator2.class})
public @interface Custom {

    String msg() default "com.sgr.valid.Custom.msg";

    int min();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy