Class ProcessEngineEvent
- java.lang.Object
-
- jadex.platform.service.processengine.ProcessEngineEvent
-
public class ProcessEngineEvent extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description protected IComponentIdentifiercidThe component id.protected java.lang.ObjectcontentThe content.static java.lang.StringINSTANCE_CREATEDstatic java.lang.StringINSTANCE_RESULT_RECEIVEDstatic java.lang.StringINSTANCE_TERMINATEDstatic java.lang.StringPROCESSMODEL_ADDEDstatic java.lang.StringPROCESSMODEL_REMOVEDprotected java.lang.StringtypeThe event type.
-
Constructor Summary
Constructors Constructor Description ProcessEngineEvent()Create a new MonitoringStarterEvent.ProcessEngineEvent(java.lang.String type, IComponentIdentifier cid, java.lang.Object content)Create a new MonitoringStarterEvent.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IComponentIdentifiergetComponentIdentifier()Get the componentIdentifier.java.lang.ObjectgetContent()Get the content.java.lang.StringgetType()Get the type.voidsetComponentIdentifier(IComponentIdentifier componentIdentifier)Set the componentIdentifier.voidsetContent(java.lang.Object content)Set the content.voidsetType(java.lang.String type)Set the type.java.lang.StringtoString()
-
-
-
Field Detail
-
PROCESSMODEL_ADDED
public static final java.lang.String PROCESSMODEL_ADDED
- See Also:
- Constant Field Values
-
PROCESSMODEL_REMOVED
public static final java.lang.String PROCESSMODEL_REMOVED
- See Also:
- Constant Field Values
-
INSTANCE_CREATED
public static final java.lang.String INSTANCE_CREATED
- See Also:
- Constant Field Values
-
INSTANCE_TERMINATED
public static final java.lang.String INSTANCE_TERMINATED
- See Also:
- Constant Field Values
-
INSTANCE_RESULT_RECEIVED
public static final java.lang.String INSTANCE_RESULT_RECEIVED
- See Also:
- Constant Field Values
-
type
protected java.lang.String type
The event type.
-
cid
protected IComponentIdentifier cid
The component id.
-
content
protected java.lang.Object content
The content.
-
-
Constructor Detail
-
ProcessEngineEvent
public ProcessEngineEvent()
Create a new MonitoringStarterEvent.
-
ProcessEngineEvent
public ProcessEngineEvent(java.lang.String type, IComponentIdentifier cid, java.lang.Object content)Create a new MonitoringStarterEvent.
-
-
Method Detail
-
getType
public java.lang.String getType()
Get the type.- Returns:
- The type.
-
setType
public void setType(java.lang.String type)
Set the type.- Parameters:
type- The type to set.
-
getComponentIdentifier
public IComponentIdentifier getComponentIdentifier()
Get the componentIdentifier.- Returns:
- The componentIdentifier.
-
setComponentIdentifier
public void setComponentIdentifier(IComponentIdentifier componentIdentifier)
Set the componentIdentifier.- Parameters:
componentIdentifier- The componentIdentifier to set.
-
getContent
public java.lang.Object getContent()
Get the content.- Returns:
- The content.
-
setContent
public void setContent(java.lang.Object content)
Set the content.- Parameters:
content- The content to set.
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-