
hsim.checkpoint.core.annotation.ValidationParam Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of check-point Show documentation
Show all versions of check-point Show documentation
Http request auto validation library for spring framework
package hsim.checkpoint.core.annotation;
import java.lang.annotation.*;
/**
* The interface Validation param.
*/
@Target(ElementType.PARAMETER)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface ValidationParam {
/**
* Required boolean.
*
* @return the boolean
*/
boolean required() default true;
/**
* Charset string.
*
* @return the string
*/
String charset() default "UTF-8";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy