Package de.xima.fc.interfaces.workflow
Interface IVersionedCustomParametersProviding
-
- All Superinterfaces:
ICustomParametersProviding
- All Known Subinterfaces:
IWorkflowElementEntity
- All Known Implementing Classes:
AWorkflowElement
,WorkflowNode
,WorkflowTrigger
public interface IVersionedCustomParametersProviding extends ICustomParametersProviding
Interface for entities that provide custom parameters stored as a JSON string.- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getCustomParametersVersion()
void
setCustomParametersVersion(String customParametersVersion)
-
Methods inherited from interface de.xima.fc.interfaces.workflow.ICustomParametersProviding
getCustomParameters, getCustomParametersJson
-
-
-
-
Method Detail
-
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
void setCustomParametersVersion(String customParametersVersion)
- Parameters:
customParametersVersion
- The custom parameters version string that is then returned bygetCustomParametersVersion()
.
-
-