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 SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetCurrentVersion()com.alibaba.fastjson.JSONObjectgetDataModelJson()StringgetPreviousVersion()
 
- 
- 
- 
Method Detail- 
getDataModelJsoncom.alibaba.fastjson.JSONObject getDataModelJson() - Returns:
- The JSON data that needs to be updated.
 
 - 
getCurrentVersionString getCurrentVersion() - Returns:
- The current version of the custom parameters.
 
 - 
getPreviousVersionString getPreviousVersion() - Returns:
- The previous version that was used to create the given getDataModelJson().
 
 
- 
 
-