Package com.yahoo.config.model.api
Class ModelCreateResult
- java.lang.Object
-
- com.yahoo.config.model.api.ModelCreateResult
-
public class ModelCreateResult extends Object
The result after creating and validating a Model.- Author:
- geirst
-
-
Constructor Summary
Constructors Constructor Description ModelCreateResult(Model model, List<ConfigChangeAction> configChangeActions)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<ConfigChangeAction>
getConfigChangeActions()
Returns the actions that needs to be done to successfully start using the new modelModel
getModel()
The model these changes apply to
-
-
-
Constructor Detail
-
ModelCreateResult
public ModelCreateResult(Model model, List<ConfigChangeAction> configChangeActions)
-
-
Method Detail
-
getModel
public Model getModel()
The model these changes apply to
-
getConfigChangeActions
public List<ConfigChangeAction> getConfigChangeActions()
Returns the actions that needs to be done to successfully start using the new model
-
-