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

org.springframework.validation.method.DefaultMethodValidationResult Maven / Gradle / Ivy

There is a newer version: 6.2.0
Show newest version
/*
 * Copyright 2002-2023 the original author or authors.
 *
 * 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
 *
 *      https://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.springframework.validation.method;

import java.lang.reflect.Method;
import java.util.List;

import org.springframework.util.Assert;

/**
 * Default {@link MethodValidationResult} implementation as a simple container.
 *
 * @author Rossen Stoyanchev
 * @since 6.1
 */
final class DefaultMethodValidationResult implements MethodValidationResult {

	private final Object target;

	private final Method method;

	private final List allValidationResults;

	private final boolean forReturnValue;


	DefaultMethodValidationResult(Object target, Method method, List results) {
		Assert.notEmpty(results, "'results' is required and must not be empty");
		Assert.notNull(target, "'target' is required");
		Assert.notNull(method, "Method is required");
		this.target = target;
		this.method = method;
		this.allValidationResults = results;
		this.forReturnValue = (results.get(0).getMethodParameter().getParameterIndex() == -1);
	}


	@Override
	public Object getTarget() {
		return this.target;
	}

	@Override
	public Method getMethod() {
		return this.method;
	}

	@Override
	public boolean isForReturnValue() {
		return this.forReturnValue;
	}

	@Override
	public List getAllValidationResults() {
		return this.allValidationResults;
	}


	@Override
	public String toString() {
		return getAllErrors().size() + " validation errors " +
				"for " + (isForReturnValue() ? "return value" : "arguments") + " of " +
				this.method.toGenericString();
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy