Package de.xima.fc.workflow.model.nodes
Class FcDecodeBase64Props
java.lang.Object
de.xima.fc.workflow.taglib.model.BaseActionProps
de.xima.fc.workflow.model.nodes.FcDecodeBase64Props
- All Implemented Interfaces:
IDescriptionProviding
,INameProviding
,IAttachToFormRecordProviding
,Serializable
public class FcDecodeBase64Props
extends BaseActionProps
implements Serializable, IAttachToFormRecordProviding
Model class for the decode base64 workflow action (
EWorkflowNodeType.FC_DECODE_BASE64
).- Since:
- 7.2.1
- Author:
- XIMA MEDIA GmbH
- See Also:
-
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 -
Method Summary
Modifier and TypeMethodDescriptionboolean
void
setAttachToFormRecord
(boolean attachToFormRecord) void
void
setExportName
(String exportName) Methods inherited from class de.xima.fc.workflow.taglib.model.BaseActionProps
getBeschreibung, getColor, getDescription, getIcon, getName, setColor, setDescription, setIcon, setName
-
Constructor Details
-
FcDecodeBase64Props
public FcDecodeBase64Props()
-
-
Method Details
-
isAttachToFormRecord
public boolean isAttachToFormRecord()- Specified by:
isAttachToFormRecord
in interfaceIAttachToFormRecordProviding
- Returns:
- Whether files created by the workflow node are attached to the form record.
-
getExportName
- Returns:
- The file name of the created file with the data from the base64 string or data URI. When not given, a default is used.
-
getBase64
- Returns:
- The base64 string or data URI to decode.
-
setAttachToFormRecord
public void setAttachToFormRecord(boolean attachToFormRecord) - Parameters:
attachToFormRecord
- Whether files created by the workflow node are attached to the form record.
-
setExportName
- Parameters:
exportName
- The file name of the created file with the data from the base64 string or data URI. When not given, a default is used.
-
setBase64
- Parameters:
base64
- The base64 string or data URI to decode.
-