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

jaxx.runtime.JAXXValidator Maven / Gradle / Ivy

The newest version!
package jaxx.runtime;


import java.util.List;
import jaxx.runtime.validator.BeanValidator;

/**
 * The contract of a validator-able object.
 *
 * @author chemit
 */
public interface JAXXValidator {

    /**
     * Obtain a validator from his id
     *
     * @param validatorId validator id
     * @return the associated validator, or null if not find
     */
    BeanValidator getValidator(String validatorId);

    /** @return the list of ids of all registred validator */
    List getValidatorIds();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy