Package org.gradle.api
Interface ActionConfiguration
public interface ActionConfiguration
Allows specification of configuration for some action.
 
The configuration is represented using zero or more initialization parameters to use when constructing an instance of the implementation class. The following types are supported:
- Since:
- 4.0
- 
Method SummaryModifier and TypeMethodDescriptionObject[]Gets the initialization parameters that will be used when constructing an instance of the implementation class.voidAdds initialization parameters to use when constructing an instance of the implementation class.voidSets any initialization parameters to use when constructing an instance of the implementation class.
- 
Method Details- 
paramsAdds initialization parameters to use when constructing an instance of the implementation class.- Parameters:
- params- - the parameters to use during construction
 
- 
setParamsSets any initialization parameters to use when constructing an instance of the implementation class.- Parameters:
- params- - the parameters to use during construction
 
- 
getParamsObject[] getParams()Gets the initialization parameters that will be used when constructing an instance of the implementation class.- Returns:
- the parameters to use during construction
 
 
-