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

io.mosip.kernel.masterdata.validator.registereddevice.ValidPurpose Maven / Gradle / Ivy

There is a newer version: 1.2.1.0
Show newest version
package io.mosip.kernel.masterdata.validator.registereddevice;

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;

import javax.validation.Constraint;
import javax.validation.Payload;

/**
 * Annotation that validates the Purpose Column value.
 * 
 * @author Megha Tanga
 * @since 1.0
 *
 */
@Documented
@Constraint(validatedBy = PurposeValidator.class)
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface ValidPurpose {
	String message() default "Purpose value not supported";

	Class[] groups() default {};

	Class[] payload() default {};

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy