Package org.gradle.api.flow
Interface FlowParameters
-
- All Known Implementing Classes:
FlowParameters.None
@Incubating public interface FlowParameters
Marker interface fordataflow 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:
FlowAction
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
FlowParameters.None
Used fordataflow actions
without parameters.
-