Package de.xima.fc.workflow.model.nodes
Class FcProvideResourceProps
- java.lang.Object
-
- de.xima.fc.workflow.taglib.model.BaseActionProps
-
- de.xima.fc.workflow.model.nodes.FcProvideResourceProps
-
- All Implemented Interfaces:
IDescriptionProviding
,INameProviding
,IAttachToFormRecordProviding
,Serializable
public class FcProvideResourceProps extends BaseActionProps implements Serializable, IAttachToFormRecordProviding
Model class for the provide resource workflow action (EWorkflowNodeType.FC_PROVIDE_RESOURCE
).- 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 FcProvideResourceProps()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getExportName()
SingleFile
getSingleFile()
boolean
isAccessibleToEndUser()
boolean
isAttachToFormRecord()
void
setAccessibleToEndUser(boolean accessibleToEndUser)
void
setAttachToFormRecord(boolean attachToFormRecord)
void
setExportName(String exportName)
void
setSingleFile(SingleFile singleFile)
-
Methods inherited from class de.xima.fc.workflow.taglib.model.BaseActionProps
getBeschreibung, getColor, getDescription, getIcon, getName, setColor, setDescription, setIcon, setName
-
-
-
-
Method Detail
-
getExportName
public String getExportName()
- Returns:
- The name of the file created from the given resource.
-
getSingleFile
public SingleFile getSingleFile()
- Returns:
- The input file that is read and written to the given
getExportName()
.
-
isAttachToFormRecord
public boolean isAttachToFormRecord()
- Specified by:
isAttachToFormRecord
in interfaceIAttachToFormRecordProviding
- Returns:
- Whether files created by the workflow node are attached to the form record.
-
setAttachToFormRecord
public void setAttachToFormRecord(boolean attachToFormRecord)
- Parameters:
attachToFormRecord
- Whether files created by the workflow node are attached to the form record.
-
isAccessibleToEndUser
public boolean isAccessibleToEndUser()
- Specified by:
isAccessibleToEndUser
in interfaceIAttachToFormRecordProviding
- Returns:
- if the attached files should be made accessible to end users (i.e. in portals).
-
setAccessibleToEndUser
public void setAccessibleToEndUser(boolean accessibleToEndUser)
-
setExportName
public void setExportName(String exportName)
- Parameters:
exportName
- The name of the file created from the given resource.
-
setSingleFile
public void setSingleFile(SingleFile singleFile)
- Parameters:
singleFile
- The input file that is read and written to the givengetExportName()
.
-
-