Interface ModelVersionProcessor
-
- All Known Implementing Classes:
DefaultModelVersionProcessor
public interface ModelVersionProcessorAllows a fixed set of properties that are valid inside a version and that could be overwritten for example on the commandline- Since:
- 3.8.5
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanisValidProperty(java.lang.String property)voidoverwriteModelProperties(java.util.Properties modelProperties, ModelBuildingRequest request)This method is responsible for examining the request and possibly overwrite of the valid properties in the model
-
-
-
Method Detail
-
isValidProperty
boolean isValidProperty(java.lang.String property)
- Parameters:
property- the property to check- Returns:
trueif this is a valid property for this processor
-
overwriteModelProperties
void overwriteModelProperties(java.util.Properties modelProperties, ModelBuildingRequest request)This method is responsible for examining the request and possibly overwrite of the valid properties in the model- Parameters:
modelProperties-request-
-
-