Interface EngineAccess.Data.Vertex

  • Enclosing interface:
    EngineAccess.Data

    public static interface EngineAccess.Data.Vertex
    The data of a flow vertex.
    Since:
    1.3.0
    • Method Detail

      • getId

        String getId()
        Returns the ID of this flow vertex.
        Since:
        1.3.0
      • getName

        String getName()
        Returns the name of this flow vertex.
        Since:
        1.3.0
      • getType

        String getType()
        Returns the type of this flow vertex. The value is one of:
        • "transition" - for a transition vertex
        • "output" - for an output vertex
        • "script" - for a script action vertex
        • "flowNode" - for a flow routing/invocation vertex
        Since:
        1.3.0
      • getDescription

        String getDescription()
        Returns the description text of this flow vertex.
        Since:
        1.3.0
      • getMetadata

        Map<String,​String> getMetadata()
        Returns the metadata of this flow vertex.
        Returns:
        an unmodifiable Map containing the metadata name/value pairs
        Since:
        1.3.0
      • toString

        String toString()
        Returns a human readable representation of this flow vertex.
        Overrides:
        toString in class Object
        Since:
        1.3.0