Class ProcessModelState.InterProcessConnection

java.lang.Object
neqsim.process.processmodel.lifecycle.ProcessModelState.InterProcessConnection
All Implemented Interfaces:
Serializable
Enclosing class:
ProcessModelState

public static class ProcessModelState.InterProcessConnection extends Object implements Serializable
Represents a connection between two ProcessSystems.
Version:
1.0
Author:
ESOL
See Also:
  • Field Details

    • serialVersionUID

      private static final long serialVersionUID
      See Also:
    • sourceProcess

      private String sourceProcess
    • streamName

      private String streamName
    • targetProcess

      private String targetProcess
    • targetPort

      private String targetPort
  • Constructor Details

    • InterProcessConnection

      public InterProcessConnection()
      Default constructor.
    • InterProcessConnection

      public InterProcessConnection(String sourceProcess, String streamName, String targetProcess, String targetPort)
      Creates an inter-process connection.
      Parameters:
      sourceProcess - name of the source ProcessSystem
      streamName - name of the connecting stream
      targetProcess - name of the target ProcessSystem
      targetPort - port on the target equipment
  • Method Details

    • getSourceProcess

      public String getSourceProcess()
      Gets source process name.
    • getStreamName

      public String getStreamName()
      Gets stream name.
    • getTargetProcess

      public String getTargetProcess()
      Gets target process name.
    • getTargetPort

      public String getTargetPort()
      Gets target port.
    • toString

      public String toString()
      Overrides:
      toString in class Object