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 SummaryFields 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 SummaryAll 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- 
splitidprotected java.lang.String splitid The split id (the same for all threads spawned at the same split).
 - 
pathidprotected java.lang.String pathid The path id (unique for each spawned thread).
 - 
pathidsprotected java.util.Set<java.lang.String> pathids All path ids belonging to the split id.
 
- 
 - 
Method Detail- 
getSplitIdpublic java.lang.String getSplitId() Get the split id.
 - 
getPathIdpublic java.lang.String getPathId() Get the path id.
 - 
getPathIdspublic java.util.Set<java.lang.String> getPathIds() Get the path ids of the split.
 - 
getSplitidpublic java.lang.String getSplitid() Gets the splitid.- Returns:
- The splitid.
 
 - 
setSplitidpublic void setSplitid(java.lang.String splitid) Sets the splitid.- Parameters:
- splitid- The splitid to set.
 
 - 
getPathidpublic java.lang.String getPathid() Gets the pathid.- Returns:
- The pathid.
 
 - 
setPathidpublic void setPathid(java.lang.String pathid) Sets the pathid.- Parameters:
- pathid- The pathid to set.
 
 - 
getPathidspublic java.util.Set<java.lang.String> getPathids() Gets the pathids.- Returns:
- The pathids.
 
 - 
setPathidspublic void setPathids(java.util.Set<java.lang.String> pathids) Sets the pathids.- Parameters:
- pathids- The pathids to set.
 
 
- 
 
-