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 IComponentIdentifier
cid
The component id.protected java.lang.Object
content
The content.static java.lang.String
INSTANCE_CREATED
static java.lang.String
INSTANCE_RESULT_RECEIVED
static java.lang.String
INSTANCE_TERMINATED
static java.lang.String
PROCESSMODEL_ADDED
static java.lang.String
PROCESSMODEL_REMOVED
protected java.lang.String
type
The 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 IComponentIdentifier
getComponentIdentifier()
Get the componentIdentifier.java.lang.Object
getContent()
Get the content.java.lang.String
getType()
Get the type.void
setComponentIdentifier(IComponentIdentifier componentIdentifier)
Set the componentIdentifier.void
setContent(java.lang.Object content)
Set the content.void
setType(java.lang.String type)
Set the type.java.lang.String
toString()
-
-
-
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:
toString
in classjava.lang.Object
-
-