/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.apache.sling.validation.spi.support; import java.io.Serializable; import java.text.MessageFormat; import java.util.Arrays; import java.util.Collections; import java.util.List; import java.util.ResourceBundle; import javax.annotation.Nonnull; import org.apache.sling.validation.ValidationFailure; import org.apache.sling.validation.ValidationResult; import org.apache.sling.validation.spi.ValidatorContext; import org.osgi.annotation.versioning.ProviderType; /** * Default implementation of {@link ValidationResult} wrapping a list of {@link ValidationFailure}s. * */ @ProviderType public final class DefaultValidationResult implements ValidationResult, Serializable { /** * */ private static final long serialVersionUID = -3370520716090956033L; private final boolean isValid; private final @Nonnull List<ValidationFailure> failures; private DefaultValidationResult(boolean isValid) { this.isValid = isValid; this.failures = Collections.emptyList(); } /** * Constructs a result with one failure message. The message is constructed by looking up the given messageKey from a resourceBundle. * and formatting it using the given messageArguments via {@link MessageFormat#format(String, Object...)}. * @param validationContext the context from which to take the location, severity and default resource bundle * @param messageKey the message key used for looking up a value in the resource bundle given in {@link ValidationFailure#getMessage(java.util.ResourceBundle)} * @param messageArguments optional number of arguments being used in {@link MessageFormat#format(String, Object...)} */ public DefaultValidationResult(@Nonnull ValidatorContext validationContext, @Nonnull String messageKey, Object... messageArguments) { this.isValid = false; this.failures = Collections.<ValidationFailure>singletonList(new DefaultValidationFailure(validationContext, messageKey, messageArguments)); } /** * Constructs a result with one failure message. The message is constructed by looking up the given messageKey from a resourceBundle. * and formatting it using the given messageArguments via {@link MessageFormat#format(String, Object...)}. * @param location the location * @param severity the severity of the embedded failure (may be {@code null} which leads to using the validator's default severity) * @param defaultResourceBundle the default resourceBundle which is used to resolve the {@code messageKey} if no other bundle is provided * @param messageKey the message key used for looking up a value in the resource bundle given in {@link ValidationFailure#getMessage(java.util.ResourceBundle)} * @param messageArguments optional number of arguments being used in {@link MessageFormat#format(String, Object...)} */ public DefaultValidationResult(@Nonnull String location, int severity, @Nonnull ResourceBundle defaultResourceBundle, @Nonnull String messageKey, Object... messageArguments) { this.isValid = false; this.failures = Collections.<ValidationFailure>singletonList(new DefaultValidationFailure(location, severity, defaultResourceBundle, messageKey, messageArguments)); } public DefaultValidationResult(ValidationFailure... failures) { this.isValid = false; this.failures = Arrays.asList(failures); } @Override public boolean isValid() { return isValid; } @Override @Nonnull public List<ValidationFailure> getFailures() { return failures; } /** * Used to indicated a valid result. */ public static final @Nonnull DefaultValidationResult VALID = new DefaultValidationResult(true); }