Package de.xima.fc.workflow.model.nodes
Class FcSaveToFileSystemProps
- java.lang.Object
-
- de.xima.fc.workflow.taglib.model.BaseActionProps
-
- de.xima.fc.workflow.model.nodes.FcSaveToFileSystemProps
-
- All Implemented Interfaces:
IDescriptionProviding
,INameProviding
,Serializable
public class FcSaveToFileSystemProps extends BaseActionProps implements Serializable
Model class for the save to file system workflow action (EWorkflowNodeType.FC_SAVE_TO_FILE_SYSTEM
).- 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 FcSaveToFileSystemProps()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getExportDirectory()
MultiFile
getMultiFile()
boolean
isAllowPathInPlaceholder()
void
setAllowPathInPlaceholder(boolean allowPathInPlaceholder)
void
setExportDirectory(String exportDir)
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
-
getExportDirectory
public String getExportDirectory()
- Returns:
- the directory, where the given files from the action to be saved
-
isAllowPathInPlaceholder
public boolean isAllowPathInPlaceholder()
- Returns:
- If
true
, then a path specification will be allowed inside placeholder, otherwise path segmentation will be removed inside placeholder.
-
setAllowPathInPlaceholder
public void setAllowPathInPlaceholder(boolean allowPathInPlaceholder)
- Parameters:
allowPathInPlaceholder
- Iftrue
, then a path specification will be allowed inside placeholder, otherwise path segmentation will be removed inside placeholder.
-
setExportDirectory
public void setExportDirectory(String exportDir)
- Parameters:
exportDir
- the directory, where the given files from the action to be saved
-
-