Created
January 19, 2013 18:46
-
-
Save donatasnicequestion/4574251 to your computer and use it in GitHub Desktop.
** Provider interface for a consuming * ADF Task Flow controller to provide an * input parameter and receive a return value * * @param <T> task flow input parameter type * @param <R> task flow return value type * * @author Donatas Valys *
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.nicequestion.donatas.adf.commons; | |
import java.io.Serializable; | |
/** Provider interface for a consuming | |
* ADF Task Flow controller to provide an | |
* input parameter and receive a return value | |
* | |
* @param <T> task flow input parameter type | |
* @param <R> task flow return value type | |
* | |
* @author Donatas Valys | |
* | |
*/ | |
public interface TaskFlowParametersProvider<T,R> extends Serializable { | |
public T getInputParameter(); | |
public void setReturnValue(R returnValue); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment