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

com.github.codeinghelper.annotation.validator.NotEmpty Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
package com.github.codeinghelper.annotation.validator;

import javax.validation.Constraint;
import java.lang.annotation.*;

/**
 * @BelongsProject: test
 * @BelongsPackage: com.example.demo.validator
 * @Author: lizeze
 * @CreateTime: 2020-08-04 22:27
 * @Description: ${Description}
 */
@Documented
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
@Constraint(validatedBy = NotBlankValidator.class)
public @interface NotEmpty {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy