Package org.kie.api.definition.process
Interface Connection
- 
public interface ConnectionA connection is a link from one Node to another. 
- 
- 
Method Summary
All 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
- 
getFrom
Node getFrom()
The Node the connection starts from. 
- 
getTo
Node getTo()
The Node the connection goes to. 
- 
getFromType
String getFromType()
The type of exit point of the from Node. Defaults to "DROOLS_DEFAULT". 
- 
getToType
String getToType()
The type of entry point of the to Node. Defaults to "DROOLS_DEFAULT". 
 - 
 
 -