Interface ISystemReplacerParams
-
- All Superinterfaces:
IReplacerParams
,Serializable
- All Known Subinterfaces:
IPlaceholderValueParams
- All Known Implementing Classes:
DefaultReplacerParameters
public interface ISystemReplacerParams extends IReplacerParams
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description Mandant
getClient()
default Clock
getClock()
String
getContextPath()
com.alibaba.fastjson.JSONObject
getCreatorDataJSON()
com.alibaba.fastjson.JSONObject
getEditorDataJSON()
IFormDataAdapter
getFormData()
Vorgang
getProcess()
Projekt
getProject()
com.alibaba.fastjson.JSONObject
getUserDataJSON()
default IBaseWorkflowExecutionContext
getWorkflowExecutionContext()
IWorkflowProcessingContext
getWorkflowProcessing()
Deprecated.Use / implementgetWorkflowExecutionContext()
.default boolean
isReplaceSystemPlaceholders()
void
setFormData(IFormDataAdapter formData)
-
Methods inherited from interface de.xima.fc.interfaces.placeholder.params.IReplacerParams
getEscaper, isEncodeFormValuesForPlaceholder
-
-
-
-
Method Detail
-
getContextPath
String getContextPath()
-
getProcess
Vorgang getProcess()
-
getClient
Mandant getClient()
-
getProject
Projekt getProject()
-
getClock
default Clock getClock()
- Returns:
- The clock to use for obtaining the current time.
- Since:
- 8.0.0
-
getWorkflowProcessing
@Deprecated @Nullable IWorkflowProcessingContext getWorkflowProcessing()
Deprecated.Use / implementgetWorkflowExecutionContext()
.- Returns:
- The current workflow processing context, or
null
if none is available.
-
getWorkflowExecutionContext
@Nullable default IBaseWorkflowExecutionContext getWorkflowExecutionContext()
-
getFormData
IFormDataAdapter getFormData()
-
setFormData
void setFormData(IFormDataAdapter formData)
-
getCreatorDataJSON
com.alibaba.fastjson.JSONObject getCreatorDataJSON()
-
getEditorDataJSON
com.alibaba.fastjson.JSONObject getEditorDataJSON()
-
getUserDataJSON
com.alibaba.fastjson.JSONObject getUserDataJSON()
-
isReplaceSystemPlaceholders
default boolean isReplaceSystemPlaceholders()
- Returns:
- When
false
, system placeholders are not replaced.
-
-