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

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

There is a newer version: 3.2.7
Show newest version
package com.paypal.butterfly.extensions.api;

import java.util.List;

/**
 * Marker interface for every type that can be assigned as
 * the parent of a {@link com.paypal.butterfly.extensions.api.TransformationUtility}
 *
 * @author facarvalho
 */
public interface TransformationUtilityParent {

    /**
     * Return the name of this transformation utility parent
     *
     * @return the name of this transformation utility parent
     */
    String getName();

    /**
     * Return an immutable list of all children
     *
     * @return an immutable list of all children
     */
    List getChildren();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy