Package org.jitterbit.integration.data.validation

Examples of org.jitterbit.integration.data.validation.ValidationIssue


        return last;
    }

    public Set<ValidationIssue> validate() {
        Set<ValidationIssue> errors = Sets.newLinkedHashSet();
        ValidationIssue e = validateFirst();
        if (e != null) {
            errors.add(e);
        }
        e = validateLast();
        if (e != null) {
View Full Code Here


            return getValidationIssue(getValue(field)) == null;
        }

        @Override
        public final void validateField(InputField field) throws InputFieldException {
            ValidationIssue issue = getValidationIssue(getValue(field));
            if (issue != null) {
                throw new InputFieldException(field, issue.getMessage());
            }
        }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.data.validation.ValidationIssue

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.