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

org.xillium.data.validation.size Maven / Gradle / Ivy

There is a newer version: 1.2.2
Show newest version
package org.xillium.data.validation;

import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;


/**
 * Annotation to indicate the maximum length of a String value
 */
@Retention(RetentionPolicy.RUNTIME)
public @interface size {
    int value();
    boolean truncate() default false;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy