cloud.agileframework.validate.annotation.Validates Maven / Gradle / Ivy
package cloud.agileframework.validate.annotation;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* @author 佟盟 on 2018/11/16
*/
@Target({ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
public @interface Validates {
Validate[] value();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy