Package com.codeforces.graygoose.validation

Examples of com.codeforces.graygoose.validation.LongValidator


    private ResponseDao responseDao;

    @Validate("downloadResponse")
    public boolean validateDownloadResponse() {
        addValidator("responseId", new RequiredValidator());
        addValidator("responseId", new LongValidator(1, Long.MAX_VALUE));

        return runValidation();
    }
View Full Code Here

TOP

Related Classes of com.codeforces.graygoose.validation.LongValidator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.