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

org.keycloak.validate.ValidationResult Maven / Gradle / Ivy

There is a newer version: 25.0.2
Show newest version
/*
 * Copyright 2021 Red Hat, Inc. and/or its affiliates
 * and other contributors as indicated by the @author tags.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.keycloak.validate;

import java.util.Collections;
import java.util.Set;
import java.util.function.Consumer;
import java.util.stream.Collectors;

/**
 * Denotes the result of a validation.
 */
public class ValidationResult {

    /**
     * An empty ValidationResult that's valid by default.
     */
    public static final ValidationResult OK = new ValidationResult(Collections.emptySet());

    public static ValidationResult of(ValidationError... errors) {
        return new ValidationResult(Set.of(errors));
    }

    public static ValidationResult of(Set errors) {
        return new ValidationResult(errors);
    }

    /**
     * Holds the {@link ValidationError ValidationError's} that occurred during validation.
     */
    private final Set errors;

    /**
     * Creates a new {@link ValidationResult} from the given errors.
     * 

* The created {@link ValidationResult} is considered valid if the given {@code errors} are empty. * * @param errors */ public ValidationResult(Set errors) { this.errors = errors == null ? Collections.emptySet() : errors; } /** * Convenience method that accepts a {@link Consumer} if the result is not valid. * * @param consumer */ public void ifNotValidAccept(Consumer consumer) { if (!isValid()) { consumer.accept(this); } } /** * Convenience method that accepts a {@link Consumer}. * * @param consumer */ public void forEachError(Consumer consumer) { for (ValidationError error : getErrors()) { consumer.accept(error); } } public boolean isValid() { return errors.isEmpty(); } public Set getErrors() { return errors; } /** * Checks if this {@link ValidationResult} contains {@link ValidationError ValidationError's} from the {@link Validator} with the given {@code id}. * * @param id * @return */ public boolean hasErrorsForValidatorId(String id) { return getErrors().stream().anyMatch(e -> e.getValidatorId().equals(id)); } /** * Returns a {@link Set} of {@link ValidationError ValidationError's} from the {@link Validator} with the given {@code id} if present, otherwise an empty {@link Set} is returned. *

* * @param id * @return */ public Set getErrorsForValidatorId(String id) { return getErrors().stream().filter(e -> e.getValidatorId().equals(id)).collect(Collectors.toSet()); } /** * Checks if this {@link ValidationResult} contains {@link ValidationError ValidationError's} with the given {@code inputHint}. *

* This can be used to test if there are {@link ValidationError ValidationError's} for a specified attribute or attribute path. * * @param inputHint * @return */ public boolean hasErrorsForInputHint(String inputHint) { return getErrors().stream().anyMatch(e -> e.getInputHint().equals(inputHint)); } /** * Returns a {@link Set} of {@link ValidationError ValidationError's} with the given {@code inputHint} if present, otherwise an empty {@link Set} is returned. *

* * @param inputHint * @return */ public Set getErrorsForInputHint(String inputHint) { return getErrors().stream().filter(e -> e.getInputHint().equals(inputHint)).collect(Collectors.toSet()); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy