Package de.xima.fc.interfaces.workflow
Interface IVersionedCustomParametersProviding
- All Superinterfaces:
ICustomParametersProviding
- All Known Subinterfaces:
IWorkflowElementEntity
- All Known Implementing Classes:
AWorkflowElement
,WorkflowNode
,WorkflowTrigger
Interface for entities that provide custom parameters stored as a JSON string.
- Author:
- XIMA MEDIA GmbH
-
Method Summary
Modifier and TypeMethodDescriptionvoid
setCustomParametersVersion
(String customParametersVersion) Methods inherited from interface de.xima.fc.interfaces.workflow.ICustomParametersProviding
getCustomParameters, getCustomParametersJson
-
Method Details
-
getCustomParametersVersion
String getCustomParametersVersion()- Returns:
- The version of the custom parameters. You can, for example, store the version of the product that create the custom parameters here. Then you can use this to update the the parameters for later product versions.
-
setCustomParametersVersion
- Parameters:
customParametersVersion
- The custom parameters version string that is then returned bygetCustomParametersVersion()
.
-