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

com.paypal.butterfly.extensions.api.ExecutionResult Maven / Gradle / Ivy

There is a newer version: 3.2.7
Show newest version
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);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy