Package eu.admire.dispel.graph

Examples of eu.admire.dispel.graph.SingleRequestNodeInput


       
        // insert a new external output node with an auto-generated name
        ExternalOutputNode externalOutput =
            new ExternalOutputNode(transferName, mRootGateway);
        RequestNodeInput newInput =
            new SingleRequestNodeInput(externalOutput, ExternalOutputNode.INPUT_NAME, 0);
        replaceTarget(connection, target, newInput);
        externalOutput.getAllInputs().get(ExternalOutputNode.INPUT_NAME).put(0, connection);
        externalOutput.addAnnotation(AnnotationKeys.GATEWAY, sourceGateway);
        graph.add(externalOutput);
               
View Full Code Here


        }
        if (index >= 0)
        {
            connection.getTargets().remove(index);
            RequestNodeInput input =
                new SingleRequestNodeInput(newResult, ResultNode.INPUT_NAME, 0);
            connection.getTargets().add(index, input);
        }
    }
View Full Code Here

                    ExternalOutputNode output = new ExternalOutputNode(name, gateway);
                    output.copyAnnotations(node);
                    GraphUtilities.replaceTarget(
                            data,
                            node,
                            new SingleRequestNodeInput(output, ExternalOutputNode.INPUT_NAME, 0));
                    output.setInput(data);
                    add.add(output);
                    LOG.debug("Created new external output node, name: " + name);
                }
                else if (ExternalInputNode.NAME.equals(node.getName()))
View Full Code Here

TOP

Related Classes of eu.admire.dispel.graph.SingleRequestNodeInput

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.