Class FormProcessUtils
- java.lang.Object
-
- de.xima.fc.workflow.processor.form.FormProcessUtils
-
public class FormProcessUtils extends Object
Helper class for Form processes- Author:
- XIMA MEDIA GmbH
-
-
Constructor Summary
Constructors Constructor Description FormProcessUtils()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static String
replaceProcessSubject(IEntityContext ec, IFormDataAdapter formData, Vorgang process)
Returns the subject of the given process while placeholders will be replaced by the given form datastatic String
replaceProcessSubject(IEntityContext ec, IFormRequestContext requestCtx, Vorgang process)
Returns the subject of the given process while placeholders will be replaced by the submitted form data
-
-
-
Method Detail
-
replaceProcessSubject
public static final String replaceProcessSubject(IEntityContext ec, IFormRequestContext requestCtx, Vorgang process)
Returns the subject of the given process while placeholders will be replaced by the submitted form data- Parameters:
ec
-IEntityContext
the context this action should be performed inrequestCtx
-IFormRequestContext
holding the form data, project and client informationprocess
-Vorgang
for which the subject should be replaced- Returns:
String
subject with replaced placeholders
-
replaceProcessSubject
public static final String replaceProcessSubject(IEntityContext ec, IFormDataAdapter formData, Vorgang process)
Returns the subject of the given process while placeholders will be replaced by the given form data- Parameters:
ec
-IEntityContext
the context this action should be performed informData
-IFormDataAdapter
holding the submitted form dataprocess
-Vorgang
for which the subject should be replaced- Returns:
String
subject with replaced placeholders
-
-