Package de.xima.fc.interfaces
Interface IUpdateCustomParametersParams
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
UpdateModelParams
Interface describing the parameters that are passed to
ICustomParametersUpdateable.updateCustomParams(IUpdateCustomParametersParams)
. Contains the JSON data to be
updated, as well as the current and previous version. You may assume the current and previous version are different,
but the previous version may not necessarily be lower than the current version.- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
-
Method Summary
Modifier and TypeMethodDescriptioncom.alibaba.fastjson.JSONObject
-
Method Details
-
getDataModelJson
com.alibaba.fastjson.JSONObject getDataModelJson()- Returns:
- The JSON data that needs to be updated.
-
getCurrentVersion
String getCurrentVersion()- Returns:
- The current version of the custom parameters.
-
getPreviousVersion
String getPreviousVersion()- Returns:
- The previous version that was used to create the given
getDataModelJson()
.
-