Class ProcessEngineAgent.ProcessInfo
- java.lang.Object
-
- jadex.platform.service.processengine.ProcessEngineAgent.ProcessInfo
-
- Enclosing class:
- ProcessEngineAgent
public static class ProcessEngineAgent.ProcessInfo extends java.lang.Object
Process info struct.
-
-
Field Summary
Fields Modifier and Type Field Description protected IComponentIdentifier
cid
The process instance cid.protected Tuple2<java.lang.String,IResourceIdentifier>
model
-
Constructor Summary
Constructors Constructor Description ProcessInfo(Tuple2<java.lang.String,IResourceIdentifier> model, IComponentIdentifier cid)
Create a new ProcessInfo.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IComponentIdentifier
getCid()
Get the cid.Tuple2<java.lang.String,IResourceIdentifier>
getModel()
Get the model.void
setCid(IComponentIdentifier cid)
Set the cid.void
setModel(Tuple2<java.lang.String,IResourceIdentifier> model)
Set the model.
-
-
-
Field Detail
-
model
protected Tuple2<java.lang.String,IResourceIdentifier> model
-
cid
protected IComponentIdentifier cid
The process instance cid.
-
-
Constructor Detail
-
ProcessInfo
public ProcessInfo(Tuple2<java.lang.String,IResourceIdentifier> model, IComponentIdentifier cid)
Create a new ProcessInfo.
-
-
Method Detail
-
getCid
public IComponentIdentifier getCid()
Get the cid. return The cid.
-
setCid
public void setCid(IComponentIdentifier cid)
Set the cid.- Parameters:
cid
- The cid to set.
-
getModel
public Tuple2<java.lang.String,IResourceIdentifier> getModel()
Get the model. return The model.
-
setModel
public void setModel(Tuple2<java.lang.String,IResourceIdentifier> model)
Set the model.- Parameters:
model
- The model to set.
-
-