All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.drools.definition.process.Node Maven / Gradle / Ivy

There is a newer version: 5.1.1
Show newest version
package org.drools.definition.process;

import java.util.List;
import java.util.Map;

public interface Node {

    long getId();

    String getName();

    Map> getIncomingConnections();

    Map> getOutgoingConnections();

    List getIncomingConnections(String type);

    List getOutgoingConnections(String type);

    NodeContainer getNodeContainer();

    Object getMetaData(String name);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy