Package de.xima.fc.bl.fdv.processing
Class VerarbeitungSaveToFilesystem
- java.lang.Object
-
- de.xima.fc.bl.fdv.processing.AVerarbeitung
-
- de.xima.fc.bl.fdv.processing.VerarbeitungSaveToFilesystem
-
- All Implemented Interfaces:
ITransferable
,IConsuming
,INamedUiElement
,IUploadConsuming
,IProcessing
,Serializable
@Embeddable public class VerarbeitungSaveToFilesystem extends AVerarbeitung implements IConsuming, IUploadConsuming
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface de.xima.fc.interfaces.IUploadConsuming
IUploadConsuming.uploadElements
-
-
Field Summary
-
Fields inherited from class de.xima.fc.bl.fdv.processing.AVerarbeitung
LOG
-
Fields inherited from interface de.xima.fc.interfaces.INamedUiElement
ATTR_DISPLAY_NAME
-
Fields inherited from interface de.xima.fc.interfaces.processing.IProcessing
ATTR_VERARBEITUNGSNAME
-
-
Constructor Summary
Constructors Constructor Description VerarbeitungSaveToFilesystem()
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description protected IProcessingResult
exec(IWorkflowProcessingContext wfpc, Aktion action)
This is the method that should implement the business logic required by this action.List<Long>
getActionIds()
Deprecated.List<String>
getActionUUIDs()
String
getDisplayName(Locale l)
String
getExportDir()
String
getIcon()
String
getLicenseKey()
String
getProcessingKey()
String
getProcessingPage()
List<String>
getUploadElements()
boolean
isUseProzessId()
boolean
isUseTimestamp()
void
setActionIds(List<Long> aktionsIdErgebnisse)
Deprecated.void
setActionUUIDs(List<String> actionUUIDs)
void
setExportDir(String exportDir)
void
setUploadElements(List<String> uploadElements)
void
setUseProzessId(boolean useProzessId)
void
setUseTimestamp(boolean useTimestamp)
-
Methods inherited from class de.xima.fc.bl.fdv.processing.AVerarbeitung
convertToLongList, execute, getDefaultProcessingPageFolder, getGuiIcon, getProcessingName, isAvailable, isFileProviding
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface de.xima.fc.interfaces.IConsuming
getAktionsIdErgebnisse
-
Methods inherited from interface de.xima.fc.interfaces.processing.IProcessing
getAvailableOverrideValue, prefillProcessing
-
-
-
-
Method Detail
-
setExportDir
public void setExportDir(String exportDir)
-
getExportDir
public String getExportDir()
-
getActionUUIDs
public List<String> getActionUUIDs()
- Specified by:
getActionUUIDs
in interfaceIConsuming
- Returns:
- A list of
Aktion.getUUID()
s. These are the actions which are consumed by this action
-
setActionUUIDs
public void setActionUUIDs(List<String> actionUUIDs)
- Specified by:
setActionUUIDs
in interfaceIConsuming
- Parameters:
actionUUIDs
- A list ofAktion.getUUID()
s. These are the actions which are consumed by this action
-
setUseProzessId
public void setUseProzessId(boolean useProzessId)
-
isUseProzessId
public boolean isUseProzessId()
-
setUseTimestamp
public void setUseTimestamp(boolean useTimestamp)
-
isUseTimestamp
public boolean isUseTimestamp()
-
exec
protected IProcessingResult exec(IWorkflowProcessingContext wfpc, Aktion action) throws Exception
Description copied from class:AVerarbeitung
This is the method that should implement the business logic required by this action. This method is called internally byAVerarbeitung.execute(IWorkflowProcessingContext, Aktion)
.- Specified by:
exec
in classAVerarbeitung
- Parameters:
wfpc
- The current workflow processing context that should be used to execute this action.action
- The action entity corresponding to the action to be executed.- Throws:
Exception
- When this action could not be executed and the error could not be handled by this action.
-
getProcessingKey
public String getProcessingKey()
- Specified by:
getProcessingKey
in interfaceIProcessing
-
getLicenseKey
public String getLicenseKey()
- Specified by:
getLicenseKey
in interfaceIProcessing
-
getDisplayName
public String getDisplayName(Locale l)
- Specified by:
getDisplayName
in interfaceINamedUiElement
- Overrides:
getDisplayName
in classAVerarbeitung
- Returns:
- Wert, der das entsprechende Objekt an Oberfläche repräsentiert (wird i.A. zur Laufzeit ermittelt).
-
getProcessingPage
public String getProcessingPage()
- Specified by:
getProcessingPage
in interfaceIProcessing
- Overrides:
getProcessingPage
in classAVerarbeitung
-
getIcon
public String getIcon()
- Specified by:
getIcon
in interfaceIProcessing
- Overrides:
getIcon
in classAVerarbeitung
- Returns:
- The icon ID for this action.
-
getUploadElements
public List<String> getUploadElements()
- Specified by:
getUploadElements
in interfaceIUploadConsuming
- Returns:
- A list of
FormElement.getAlias()
es. These are the upload elements whose files are consumed by this upload file consuming action.
-
setUploadElements
public void setUploadElements(List<String> uploadElements)
- Specified by:
setUploadElements
in interfaceIUploadConsuming
- Parameters:
uploadElements
- A list ofFormElement.getAlias()
es. These are the upload elements whose files are consumed by this upload file consuming action.
-
setActionIds
@Deprecated public void setActionIds(List<Long> aktionsIdErgebnisse)
Deprecated.- Specified by:
setActionIds
in interfaceIConsuming
-
getActionIds
@Deprecated public List<Long> getActionIds()
Deprecated.- Specified by:
getActionIds
in interfaceIConsuming
-
-