Package jadex.bpmn.runtime.handler
Class SplitInfo
- java.lang.Object
 - 
- jadex.bpmn.runtime.handler.SplitInfo
 
 
- 
public class SplitInfo extends java.lang.ObjectKeep information about a thread spawned at a split gateway used later when processing the corresponding join. 
- 
- 
Field Summary
Fields Modifier and Type Field Description protected java.lang.StringpathidThe path id (unique for each spawned thread).protected java.util.Set<java.lang.String>pathidsAll path ids belonging to the split id.protected java.lang.StringsplitidThe split id (the same for all threads spawned at the same split). 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetPathid()Gets the pathid.java.lang.StringgetPathId()Get the path id.java.util.Set<java.lang.String>getPathids()Gets the pathids.java.util.Set<java.lang.String>getPathIds()Get the path ids of the split.java.lang.StringgetSplitid()Gets the splitid.java.lang.StringgetSplitId()Get the split id.voidsetPathid(java.lang.String pathid)Sets the pathid.voidsetPathids(java.util.Set<java.lang.String> pathids)Sets the pathids.voidsetSplitid(java.lang.String splitid)Sets the splitid. 
 - 
 
- 
- 
Field Detail
- 
splitid
protected java.lang.String splitid
The split id (the same for all threads spawned at the same split). 
- 
pathid
protected java.lang.String pathid
The path id (unique for each spawned thread). 
- 
pathids
protected java.util.Set<java.lang.String> pathids
All path ids belonging to the split id. 
 - 
 
- 
Method Detail
- 
getSplitId
public java.lang.String getSplitId()
Get the split id. 
- 
getPathId
public java.lang.String getPathId()
Get the path id. 
- 
getPathIds
public java.util.Set<java.lang.String> getPathIds()
Get the path ids of the split. 
- 
getSplitid
public java.lang.String getSplitid()
Gets the splitid.- Returns:
 - The splitid.
 
 
- 
setSplitid
public void setSplitid(java.lang.String splitid)
Sets the splitid.- Parameters:
 splitid- The splitid to set.
 
- 
getPathid
public java.lang.String getPathid()
Gets the pathid.- Returns:
 - The pathid.
 
 
- 
setPathid
public void setPathid(java.lang.String pathid)
Sets the pathid.- Parameters:
 pathid- The pathid to set.
 
- 
getPathids
public java.util.Set<java.lang.String> getPathids()
Gets the pathids.- Returns:
 - The pathids.
 
 
- 
setPathids
public void setPathids(java.util.Set<java.lang.String> pathids)
Sets the pathids.- Parameters:
 pathids- The pathids to set.
 
 - 
 
 -