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

io.mosip.pms.device.validator.ValidCertificateLevel Maven / Gradle / Ivy

The newest version!
package io.mosip.pms.device.validator;

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

@Documented
@Constraint(validatedBy = CertificateLevelValidator.class)
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface ValidCertificateLevel {
	String message() default "Certificate Level not supported";

	Class[] groups() default {};

	Class[] payload() default {};

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy