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

com.nls.validation.Postcode Maven / Gradle / Ivy

There is a newer version: 1.0.14
Show newest version
package com.nls.validation;

import javax.validation.Constraint;
import javax.validation.Payload;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Target({ElementType.TYPE, ElementType.ANNOTATION_TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Constraint(validatedBy = PostcodeValidator.class)
public @interface Postcode {
    String postcodeField();
    String countryField() default "";
    String countryValue() default "GBR";

    String message() default "Invalid postcode";
    Class[] groups() default {};
    Class[] payload() default {};

    @Target({ElementType.TYPE, ElementType.ANNOTATION_TYPE})
    @Retention(RetentionPolicy.RUNTIME)
    @Documented
    @interface List {
        Postcode[] value();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy