Package de.xima.fc.workflow.model.nodes
Class FcFillWordProps
- java.lang.Object
-
- de.xima.fc.workflow.taglib.model.BaseActionProps
-
- de.xima.fc.workflow.model.nodes.FcFillWordProps
-
- All Implemented Interfaces:
IDescriptionProviding
,INameProviding
,IAttachableFile
,Serializable
public class FcFillWordProps extends BaseActionProps implements Serializable, IAttachableFile
Model class for the Word fill workflow action (EWorkflowNodeType.FC_FILL_WORD
).- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from interface de.xima.fc.entities.interfaces.IDescriptionProviding
ATTR_BESCHREIBUNG, ATTR_DESCRIPTION, COL_DESCRIPTION
-
Fields inherited from interface de.xima.fc.entities.interfaces.INameProviding
ATTR_NAME, COL_NAME
-
-
Constructor Summary
Constructors Constructor Description FcFillWordProps()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getExportName()
SingleFile
getSingleFile()
boolean
isAttachToFormRecord()
void
setAttachToFormRecord(boolean attachToFormRecord)
void
setExportName(String exportName)
void
setSingleFile(SingleFile singleFile)
-
Methods inherited from class de.xima.fc.workflow.taglib.model.BaseActionProps
getBeschreibung, getColor, getDescription, getIcon, getName, setColor, setDescription, setIcon, setName
-
-
-
-
Method Detail
-
getExportName
public String getExportName()
- Returns:
- The file name of the Word document to be created. When empty, a file name is generated from the input file.
-
getSingleFile
public SingleFile getSingleFile()
- Returns:
- The Word document to be filled with the form data.
-
isAttachToFormRecord
public boolean isAttachToFormRecord()
- Specified by:
isAttachToFormRecord
in interfaceIAttachableFile
- Returns:
- Whether files created by this file providing action are attached to the form record.
-
setAttachToFormRecord
public void setAttachToFormRecord(boolean attachToFormRecord)
- Specified by:
setAttachToFormRecord
in interfaceIAttachableFile
- Parameters:
attachToFormRecord
- Whether files created by this file providing action are attached to the form record.
-
setExportName
public void setExportName(String exportName)
- Parameters:
exportName
- The file name of the Word document to be created. When empty, a file name is generated from the input file.
-
setSingleFile
public void setSingleFile(SingleFile singleFile)
- Parameters:
singleFile
- The Word document to be filled with the form data.
-
-