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

com.emc.storageos.model.valid.Length Maven / Gradle / Ivy

There is a newer version: 3.5.0.0
Show newest version
/*
 * Copyright (c) 2012 EMC Corporation
 * All Rights Reserved
 */

package com.emc.storageos.model.valid;

import java.lang.annotation.*;

/**
 * Annotation that defines minimum and maximum lengths for a string field
 */
@Documented
@Target({ ElementType.METHOD, ElementType.FIELD })
@Retention(RetentionPolicy.RUNTIME)
public @interface Length {
    int min() default 0;

    int max() default Integer.MAX_VALUE;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy