Package de.xima.fc.interfaces.workflow
Interface ICustomParametersProviding
- 
- All Known Subinterfaces:
 IVersionedCustomParametersProviding,IWorkflowElementEntity
- All Known Implementing Classes:
 AWorkflowElement,WorkflowNode,WorkflowTrigger
public interface ICustomParametersProvidingInterface for entities that provide custom parameters stored as a JSON string.- Author:
 - XIMA MEDIA GmbH
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description StringgetCustomParameters()default com.alibaba.fastjson.JSONObjectgetCustomParametersJson() 
 - 
 
- 
- 
Method Detail
- 
getCustomParameters
String getCustomParameters()
- Returns:
 - A JSON string holding the custom parameters.
 
 
- 
getCustomParametersJson
default com.alibaba.fastjson.JSONObject getCustomParametersJson()
- Returns:
 - The custom parameters, parsed as a JSON object. Returns an empty JSON object if the parameters are empty or not a valid JSON string.
 
 
 - 
 
 -