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,Serializable
public class FcDecodeBase64Props extends BaseActionProps implements Serializable
Model class for the decode base64 workflow action (EWorkflowNodeType.FC_DECODE_BASE64).- Since:
- 7.2.1
- Author:
- XIMA MEDIA GmbH
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class de.xima.fc.workflow.taglib.model.BaseActionProps
BaseActionProps.name
-
-
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 FcDecodeBase64Props()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetBase64()FileProvisiongetDecodedFileProvision()Details for how to handle the file that was decoded from the base64 string.StringgetExportName()voidsetBase64(String base64)voidsetDecodedFileProvision(FileProvision decodedFileProvision)Details for how to handle the file that was decoded from the base64 string.voidsetExportName(String exportName)-
Methods inherited from class de.xima.fc.workflow.taglib.model.BaseActionProps
getBeschreibung, getColor, getDescription, getIcon, getName, setColor, setDescription, setIcon, setName
-
-
-
-
Method Detail
-
getBase64
public String getBase64()
- Returns:
- The base64 string or data URI to decode.
-
setBase64
public void setBase64(String base64)
- Parameters:
base64- The base64 string or data URI to decode.
-
getDecodedFileProvision
public FileProvision getDecodedFileProvision()
Details for how to handle the file that was decoded from the base64 string.- Returns:
- Details for how to handle the decoded file.
-
setDecodedFileProvision
public void setDecodedFileProvision(FileProvision decodedFileProvision)
Details for how to handle the file that was decoded from the base64 string.- Parameters:
decodedFileProvision- Details for how to handle the decoded file.
-
getExportName
public String getExportName()
- Returns:
- The target file name of the created file. May contain placeholders. When empty, a default name is used.
-
setExportName
public void setExportName(String exportName)
- Parameters:
exportName- The target file name of the created file. May contain placeholders. When empty, a default name is used.
-
-