ValidatorProperty.java :  » Web-Framework » Caramba » org » caramba » validator » Java Open Source

Java Open Source » Web Framework » Caramba 
Caramba » org » caramba » validator » ValidatorProperty.java
package org.caramba.validator;

import java.lang.annotation.Retention;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Target;

/**
 * @author Pieter Degraeuwe
 *         Date: Aug 9, 2006
 *         Time: 5:56:53 PM
 */
@Target({})
@Retention(RUNTIME)
public @interface ValidatorProperty {
    /**
     * The name of the property to set on the validator
     */
    String name();

    /**
     * The value of the property to set on the validator
     */
    String value();

}

java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.