Package de.uplanet.lucy.server.workflow
Interface ISupportBeforeStartEvent
- All Known Implementing Classes:
AbstractIMAPFolderWorkflowEventSource,AbstractJMSWorkflowEventSource,ExchangeOnlineIMAPFolderPollingWorkflowEventSource,FileSystemWorkflowEventSource,IMAPFolderPollingWorkflowEventSource,JMSQueueWorkflowEventSource,JMSTopicWorkflowEventSource,MaildirWorkflowEventSource,MQTTWorkflowEventSource,UDPWorkflowEventSource
public interface ISupportBeforeStartEvent
This interface is implemented by workflow objects that support sending events
before a certain activity is about to being started.
-
Method Summary
Modifier and TypeMethodDescriptionbooleanThis property determines if an before-start event should be sent.voidsetSendBeforeStartEvent(boolean p_bSendBeforeStartEvent) This property determines if an before-start event should be sent.
-
Method Details
-
isSendBeforeStartEvent
boolean isSendBeforeStartEvent()This property determines if an before-start event should be sent.- Returns:
trueif an event should be sent before the workflow object's activity is about to being started, orfalseotherwise.
-
setSendBeforeStartEvent
void setSendBeforeStartEvent(boolean p_bSendBeforeStartEvent) This property determines if an before-start event should be sent.- Parameters:
p_bSendBeforeStartEvent-trueif an event should be sent before the workflow object's activity is about to being started, orfalseotherwise.
-