Interface Connection


public interface Connection
A connection is a link from one Node to another.
  • Method Summary

    Modifier and Type
    Method
    Description
    The Node the connection starts from.
    The type of exit point of the from Node.
    Meta data associated with this connection.
    The Node the connection goes to.
    The type of entry point of the to Node.
  • Method Details

    • 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".
    • getMetaData

      Map<String,Object> getMetaData()
      Meta data associated with this connection.