com.paypal.butterfly.extensions.api.ExecutionResult Maven / Gradle / Ivy
package com.paypal.butterfly.extensions.api;
/**
* The meta-data object resulted after the {@link TransformationUtility} instance has been executed.
* This is an abstract type, the concrete classes {@link TUExecutionResult} and {@link TOExecutionResult} should
* be used directly instead.
*
* @see TUExecutionResult
* @see TOExecutionResult
*
* @author facarvalho
*/
public abstract class ExecutionResult extends Result {
ExecutionResult(S source) {
super(source);
}
ExecutionResult(S source, T type) {
super(source, type);
}
}