Klasse AbstractPluginFeedWorkflowAction
java.lang.Object
de.uplanet.lucy.server.workflow.action.AbstractWorkflowAction
de.uplanet.lucy.server.share.workflow.action.AbstractPluginFeedWorkflowAction
- Alle implementierten Schnittstellen:
IActivatableWorkflowObject,INamedWorkflowObject,INeedWorkflow,IWorkflowAction,IWorkflowObject,Serializable
- Bekannte direkte Unterklassen:
CreatePluginFeedWorkflowAction,DeletePluginFeedWorkflowAction,MergePluginFeedWorkflowAction,UpdatePluginFeedWorkflowAction
- Siehe auch:
-
Feldübersicht
Von Schnittstelle geerbte Felder de.uplanet.lucy.server.workflow.IWorkflowObject
GUID_COMPARATOR -
Konstruktorübersicht
Konstruktoren -
Methodenübersicht
Modifizierer und TypMethodeBeschreibungThis property determines if an exception should be thrown if the feed action configuration is invalid.This property determines if an exception should be thrown if the feed creation failed for some reason.process(IWorkflowEvent p_evt, de.uplanet.lucy.server.workflow.IWorkflowProcessingContext p_wfCtx, de.uplanet.lucy.server.IProcessingContext p_ctx) Process a workflow event in the given context.voidsetFeedConfigurationErrorMode(ON_ERROR_MODE p_onErrorMode) This property determines if an exception should be thrown if the feed action configuration is invalid.voidsetFeedCreationErrorMode(ON_ERROR_MODE p_onErrorMode) This property determines if an exception should be thrown if the feed creation failed for some reason.voidsetMappingGuid(String p_strMappingGuid) voidsetPluginGuid(String p_strPluginGuid) voidsetSourceDataGroupGuid(String p_strDataGroupGuid) Von Klasse geerbte Methoden de.uplanet.lucy.server.workflow.action.AbstractWorkflowAction
getAfferentTransition, getEfferentTransition, getGuid, getName, getWorkflow, isActive, setActive, setAfferentTransition, setEfferentTransition, setName, setWorkflow, toString
-
Konstruktordetails
-
AbstractPluginFeedWorkflowAction
-
-
Methodendetails
-
getPluginGuid
-
setPluginGuid
-
getSourceDataGroupGuid
-
setSourceDataGroupGuid
-
getMappingGuid
-
setMappingGuid
-
getFeedConfigurationErrorMode
This property determines if an exception should be thrown if the feed action configuration is invalid.- Gibt zurück:
- The error handling mode.
-
setFeedConfigurationErrorMode
This property determines if an exception should be thrown if the feed action configuration is invalid.- Parameter:
p_onErrorMode- The error mode to be used. May be eitherON_ERROR_MODE.THROW_EXCEPTION, orON_ERROR_MODE.NO_ACTION.
-
getFeedCreationErrorMode
This property determines if an exception should be thrown if the feed creation failed for some reason.- Gibt zurück:
- The error handling mode.
-
setFeedCreationErrorMode
This property determines if an exception should be thrown if the feed creation failed for some reason.- Parameter:
p_onErrorMode- The error mode to be used. May be eitherON_ERROR_MODE.THROW_EXCEPTION, orON_ERROR_MODE.NO_ACTION.
-
process
public WorkflowTransition process(IWorkflowEvent p_evt, de.uplanet.lucy.server.workflow.IWorkflowProcessingContext p_wfCtx, de.uplanet.lucy.server.IProcessingContext p_ctx) throws Exception Beschreibung aus Schnittstelle kopiert:IWorkflowActionProcess a workflow event in the given context.Normally, a workflow action should return its efferent transition, regardless whether it is
active, or not.- Parameter:
p_evt- The event to be processed.p_wfCtx- The workflow processing context.p_ctx- The processing context.- Gibt zurück:
- The efferent transition, or
null. - Löst aus:
Exception- If an error occurred.
-