Package de.xima.fc.bl.fdv.processing
Class AVerarbeitung
- java.lang.Object
 - 
- de.xima.fc.bl.fdv.processing.AVerarbeitung
 
 
- 
- All Implemented Interfaces:
 ITransferable,INamedUiElement,IProcessing,Serializable
- Direct Known Subclasses:
 AParameterVerarbeitung,VerarbeitungCallback,VerarbeitungChangeStatus,VerarbeitungCompressAsZip,VerarbeitungCopyToPostfach,VerarbeitungCopyToStatus,VerarbeitungDbSQLQuery,VerarbeitungDeleteVorgang,VerarbeitungEmail,VerarbeitungExport,VerarbeitungExportPersistence,VerarbeitungExterneRessource,VerarbeitungInbox,VerarbeitungMoveToPostfach,VerarbeitungPdf,VerarbeitungRenewProzessID,VerarbeitungReturnFile,VerarbeitungSaveToFilesystem,VerarbeitungStop,VerarbeitungTemplate,VerarbeitungUpload,VerarbeitungWord,VerarbeitungWriteToFile
@Deprecated public abstract class AVerarbeitung extends Object implements IProcessing
Deprecated.This is part of the old workflow engine. Use the new workflow engine. Actions should implementINodeHandler.Abstrakte Basisklasse für IAktionsVerarbeitung-Implementierungen.- See Also:
 - Serialized Form
 
 
- 
- 
Field Summary
Fields Modifier and Type Field Description protected static org.slf4j.LoggerLOGDeprecated.Logger-Instanz, die auch von Subklassen (konkreten Implementierungen) verwendet werden kann und sollte.- 
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 AVerarbeitung()Deprecated. 
- 
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Deprecated Methods Modifier and Type Method Description protected List<Long>convertToLongList(List<Long> longList)Deprecated.protected abstract IProcessingResultexec(IWorkflowProcessingContext workflowProcessingContext, Aktion aktion)Deprecated.This is the method that should implement the business logic required by this action.IProcessingResultexecute(IWorkflowProcessingContext wfpc, Aktion aktionInProcess)Deprecated.calls the internal exec mehtodprotected StringgetDefaultProcessingPageFolder()Deprecated.StringgetDisplayName(Locale l)Deprecated.The display name of this element in the given locale.IGuiIcongetGuiIcon()Deprecated.StringgetIcon()Deprecated.StringgetProcessingName()Deprecated.Liefert den (System-internen) festen Namen dieser Implementierung vonIProcessing, der dem Klassennamen entspricht.StringgetProcessingPage()Deprecated.booleanisAvailable(IEntityContext ec, Mandant client)Deprecated.booleanisFileProviding()Deprecated.Lieferttrue, wenn diese Implementierung vonIProcessingeine 'bereitstellende' Aktion ist, das heißt, wenn sie dieIProviding-Schnittstelle implementiert.- 
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.processing.IProcessing
getAvailableOverrideValue, getLicenseKey, getProcessingKey, prefillProcessing 
 - 
 
 - 
 
- 
- 
Method Detail
- 
execute
public final IProcessingResult execute(IWorkflowProcessingContext wfpc, Aktion aktionInProcess) throws WorkflowProcessingException
Deprecated.calls the internal exec mehtod- Specified by:
 executein interfaceIProcessing- Parameters:
 wfpc- the currentIWorkflowProcessingContextaktionInProcess- the currentAktion- Throws:
 WorkflowProcessingException- bei Ausnahmen in der Verarbeitung
 
- 
isAvailable
public boolean isAvailable(IEntityContext ec, Mandant client)
Deprecated.- Specified by:
 isAvailablein interfaceIProcessing
 
- 
getProcessingName
public String getProcessingName()
Deprecated.Liefert den (System-internen) festen Namen dieser Implementierung vonIProcessing, der dem Klassennamen entspricht.- Specified by:
 getProcessingNamein interfaceIProcessing- Returns:
 this.getClass().getCanonicalName().
 
- 
isFileProviding
public boolean isFileProviding()
Deprecated.Lieferttrue, wenn diese Implementierung vonIProcessingeine 'bereitstellende' Aktion ist, das heißt, wenn sie dieIProviding-Schnittstelle implementiert.- Specified by:
 isFileProvidingin interfaceIProcessing- Returns:
 true, wenn diese Implementierung vonIProcessingdieIProviding-Schnittstelle implementiert.
 
- 
exec
protected abstract IProcessingResult exec(IWorkflowProcessingContext workflowProcessingContext, Aktion aktion) throws Exception
Deprecated.This is the method that should implement the business logic required by this action. This method is called internally byexecute(IWorkflowProcessingContext, Aktion).- Parameters:
 workflowProcessingContext- The current workflow processing context that should be used to execute this action.aktion- 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.
 
- 
getDefaultProcessingPageFolder
protected String getDefaultProcessingPageFolder()
Deprecated. 
- 
getDisplayName
public String getDisplayName(Locale l)
Deprecated.Description copied from interface:INamedUiElementThe display name of this element in the given locale.- Specified by:
 getDisplayNamein interfaceINamedUiElement- Parameters:
 l- The locale to get the display name for.- Returns:
 - The display name of this element in the given locale.
 
 
- 
getProcessingPage
public String getProcessingPage()
Deprecated.- Specified by:
 getProcessingPagein interfaceIProcessing
 
- 
getIcon
public String getIcon()
Deprecated.- Specified by:
 getIconin interfaceIProcessing- Returns:
 - The icon ID for this action.
 
 
- 
getGuiIcon
public IGuiIcon getGuiIcon()
Deprecated.- Specified by:
 getGuiIconin interfaceIProcessing
 
 - 
 
 -