Package de.xima.fc.interfaces
Interface IUpdateCustomParametersParams
-
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
UpdateModelParams
public interface IUpdateCustomParametersParams extends Serializable
Interface describing the parameters that are passed toICustomParametersUpdateable.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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getCurrentVersion()
com.alibaba.fastjson.JSONObject
getDataModelJson()
String
getPreviousVersion()
-
-
-
Method Detail
-
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()
.
-
-