Package de.xima.fc.workflow.model.nodes
Class FcCompressAsZipProps
- java.lang.Object
-
- de.xima.fc.workflow.taglib.model.BaseActionProps
-
- de.xima.fc.workflow.model.nodes.FcCompressAsZipProps
-
- All Implemented Interfaces:
IDescriptionProviding
,INameProviding
,IAttachableFile
,Serializable
public final class FcCompressAsZipProps extends BaseActionProps implements Serializable, IAttachableFile
Model class for the compress as ZIP workflow action (EWorkflowNodeType.FC_COMPRESS_AS_ZIP
).- 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 FcCompressAsZipProps()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getCompressedFileName()
MultiFile
getMultiFile()
boolean
isAttachToFormRecord()
void
setAttachToFormRecord(boolean attachToFormRecord)
void
setCompressedFileName(String compressedFileName)
void
setMultiFile(MultiFile multiFile)
-
Methods inherited from class de.xima.fc.workflow.taglib.model.BaseActionProps
getBeschreibung, getColor, getDescription, getIcon, getName, setColor, setDescription, setIcon, setName
-
-
-
-
Method Detail
-
getCompressedFileName
public String getCompressedFileName()
- Returns:
- File name of the ZIP archive file. Should end with
.zip
. When empty, the name of the input file (when one file is selected) orcompressed.zip
is used (when multiple files are selected).
-
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.
-
setCompressedFileName
public void setCompressedFileName(String compressedFileName)
- Parameters:
compressedFileName
- File name of the ZIP archive file. Should end with.zip
. When empty, the name of the input file (when one file is selected) orcompressed.zip
is used (when multiple files are selected).
-
-