Package org.kie.api.definition.process
Interface Connection
- 
 public interface ConnectionA connection is a link from one Node to another.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description NodegetFrom()The Node the connection starts from.StringgetFromType()The type of exit point of the from Node.Map<String,Object>getMetaData()Meta data associated with this connection.NodegetTo()The Node the connection goes to.StringgetToType()The type of entry point of the to Node.
 
- 
- 
- 
Method Detail- 
getFromNode getFrom() The Node the connection starts from.
 - 
getToNode getTo() The Node the connection goes to.
 - 
getFromTypeString getFromType() The type of exit point of the from Node. Defaults to "DROOLS_DEFAULT".
 - 
getToTypeString getToType() The type of entry point of the to Node. Defaults to "DROOLS_DEFAULT".
 
- 
 
-