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,- IAttachableFile,- Serializable
 
 public class FcDecodeBase64Props extends BaseActionProps implements Serializable, IAttachableFile Model class for the decode base64 workflow action (EWorkflowNodeType.FC_DECODE_BASE64).- Since:
- 7.2.1
- Author:
- XIMA MEDIA GmbH
- See Also:
- Serialized Form
 
- 
- 
Field Summary- 
Fields inherited from interface de.xima.fc.entities.interfaces.IDescriptionProvidingATTR_BESCHREIBUNG, ATTR_DESCRIPTION, COL_DESCRIPTION
 - 
Fields inherited from interface de.xima.fc.entities.interfaces.INameProvidingATTR_NAME, COL_NAME
 
- 
 - 
Constructor SummaryConstructors Constructor Description FcDecodeBase64Props()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetBase64()StringgetExportName()booleanisAttachToFormRecord()voidsetAttachToFormRecord(boolean attachToFormRecord)voidsetBase64(String base64)voidsetExportName(String exportName)- 
Methods inherited from class de.xima.fc.workflow.taglib.model.BaseActionPropsgetBeschreibung, getColor, getDescription, getIcon, getName, setColor, setDescription, setIcon, setName
 
- 
 
- 
- 
- 
Method Detail- 
isAttachToFormRecordpublic boolean isAttachToFormRecord() - Specified by:
- isAttachToFormRecordin interface- IAttachableFile
- Returns:
- Whether files created by this file providing action are attached to the form record.
 
 - 
getExportNamepublic String 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.
 
 - 
getBase64public String getBase64() - Returns:
- The base64 string or data URI to decode.
 
 - 
setAttachToFormRecordpublic void setAttachToFormRecord(boolean attachToFormRecord) - Specified by:
- setAttachToFormRecordin interface- IAttachableFile
- Parameters:
- attachToFormRecord- Whether files created by this file providing action are attached to the form record.
 
 - 
setExportNamepublic void setExportName(String exportName) - 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.
 
 - 
setBase64public void setBase64(String base64) - Parameters:
- base64- The base64 string or data URI to decode.
 
 
- 
 
-