Skip to content

Instantly share code, notes, and snippets.

@donatasnicequestion
Created January 19, 2013 18:46
Show Gist options
  • Save donatasnicequestion/4574251 to your computer and use it in GitHub Desktop.
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 *
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