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

org.springframework.integration.support.PartialSuccessException Maven / Gradle / Ivy

There is a newer version: 6.3.3
Show newest version
/*
 * Copyright 2015-2019 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.integration.support;

import java.util.Collection;

import org.springframework.messaging.Message;
import org.springframework.messaging.MessagingException;
import org.springframework.util.Assert;

/**
 * A {@link MessagingException} thrown when a non-transactional operation is
 * performing multiple updates from a single message, e.g. an FTP 'mput' operation.
 *
 * @author Gary Russell
 * @since 4.2
 *
 */
public class PartialSuccessException extends MessagingException {

	private static final long serialVersionUID = 8810900575763284993L;

	private final Collection partialResults;

	private final Collection derivedInput;

	/**
	 *
	 * @param message the message.
	 * @param description the description.
	 * @param cause the cause.
	 * @param partialResults The subset of multiple updates that were successful before the cause occurred.
	 * @param derivedInput The collection (usually derived from the message) of input data; e.g. a filtered
	 * list of local files being sent to FTP using {@code mput}.
	 */
	public PartialSuccessException(Message message, String description, Throwable cause,
			Collection partialResults, Collection derivedInput) {
		super(message, description, cause);
		Assert.notNull(cause, "Cause is required");
		this.partialResults = partialResults;
		this.derivedInput = derivedInput;
	}

	/**
	 * See {@link #PartialSuccessException(Message, String, Throwable, Collection, Collection)}.
	 * @return the partial results
	 */
	public Collection getPartialResults() {
		return this.partialResults;
	}

	/**
	 * See {@link #PartialSuccessException(Message, String, Throwable, Collection, Collection)}.
	 * @return the derived input.
	 */
	public Collection getDerivedInput() {
		return this.derivedInput;
	}

	/**
	 * Convenience version of {@link #getPartialResults()} to avoid casting
	 * @param clazz the type.
	 * @param  the result type.
	 * @return the partial results.
	 */
	@SuppressWarnings("unchecked")
	public  Collection getPartialResults(Class clazz) {
		return (Collection) this.partialResults;
	}

	/**
	 * Convenience version of {@link #getDerivedInput()} to avoid casting
	 * @param clazz the type.
	 * @param  the type of input.
	 * @return the partial results.
	 */
	@SuppressWarnings("unchecked")
	public  Collection getDerivedInput(Class clazz) {
		return (Collection) this.derivedInput;
	}

	@Override
	public String toString() {
		return "PartialSuccessException [" + getMessage() + ":" + getCause().getMessage()
				+ ", partialResults=" + this.partialResults + ", derivedInput=" + this.derivedInput
				+ ", failedMessage=" + getFailedMessage() + "]";
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy