@Target(value={METHOD,FIELD,ANNOTATION_TYPE}) @Retention(value=RUNTIME) @Constraint(validatedBy=ISBNValidator.class) @Documented public @interface ISBN
import com.foreach.spring.validators.ISBN;
public class Bar
{
...
@NotBlank @Length(max = 13, min = 10) @ISBN
private String isbn;
Copyright © 2017. All rights reserved.