Interface FlowParameters

All Known Implementing Classes:
FlowParameters.None

@Incubating public interface FlowParameters
Marker interface for dataflow action parameters.

Parameter types should be interfaces, only declaring getters for Property-like objects. Example:

 public interface MyFlowParameters extends FlowParameters {
    Property<String> getString();
   @ServiceReference Property<MyBuildService> getBuildService();
 }
 
Since:
8.1
See Also: