Interface RegistryFileTaskStep.UpdateStages.OverridingValues
-
- All Known Subinterfaces:
RegistryFileTaskStep.Update
- Enclosing interface:
- RegistryFileTaskStep.UpdateStages
public static interface RegistryFileTaskStep.UpdateStages.OverridingValuesThe stage of the container registry FileTaskStep update allowing to specify the overriding values.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RegistryFileTaskStep.UpdatewithOverridingValue(String name, OverridingValue overridingValue)The function that specifies a single value that will override the corresponding value specified under the function withValuesPath().RegistryFileTaskStep.UpdatewithOverridingValues(Map<String,OverridingValue> overridingValues)The function that specifies the values that override the corresponding values specified under the function withValuesPath().
-
-
-
Method Detail
-
withOverridingValues
RegistryFileTaskStep.Update withOverridingValues(Map<String,OverridingValue> overridingValues)
The function that specifies the values that override the corresponding values specified under the function withValuesPath().- Parameters:
overridingValues- a map which contains the values that will override the corresponding values specified under the function withValuesPath().- Returns:
- the next stage of the container registry FileTaskStep update.
-
withOverridingValue
RegistryFileTaskStep.Update withOverridingValue(String name, OverridingValue overridingValue)
The function that specifies a single value that will override the corresponding value specified under the function withValuesPath().- Parameters:
name- the name of the value to be overridden.overridingValue- the value of the value to be overridden.- Returns:
- the next stage of the container registry FileTaskStep update.
-
-