Examples of addStep()


Examples of com.adito.wizard.DefaultWizardSequence.addStep()

                        "applicationShortcutWizard", this.getSessionInfo(request));
        seq.addStep(new WizardStep("/applicationShortcutApplication.do", true));
        seq.addStep(new WizardStep("/applicationShortcutDetails.do"));
        seq.addStep(new WizardStep("/applicationShortcutAdditionalDetails.do"));
        boolean isUserConsole = getSessionInfo(request).isUserConsoleContext();
        seq.addStep(new WizardStep( isUserConsole ? "/applicationShortcutPersonalPolicy.do" : "/applicationShortcutPolicySelection.do"));
        seq.addStep(new WizardStep("/applicationShortcutSummary.do"));
        return seq;
    }
}
View Full Code Here

Examples of com.adito.wizard.DefaultWizardSequence.addStep()

        seq.addStep(new WizardStep("/applicationShortcutApplication.do", true));
        seq.addStep(new WizardStep("/applicationShortcutDetails.do"));
        seq.addStep(new WizardStep("/applicationShortcutAdditionalDetails.do"));
        boolean isUserConsole = getSessionInfo(request).isUserConsoleContext();
        seq.addStep(new WizardStep( isUserConsole ? "/applicationShortcutPersonalPolicy.do" : "/applicationShortcutPolicySelection.do"));
        seq.addStep(new WizardStep("/applicationShortcutSummary.do"));
        return seq;
    }
}
View Full Code Here

Examples of com.agiletec.plugins.jpcontentworkflow.aps.system.services.workflow.model.Workflow.addStep()

    }
    Iterator<Element> stepIter = contentTypeElem.getChildren(STEP_CHILD).iterator();
    while (stepIter.hasNext()) {
      Element stepElem = stepIter.next();
      Step step = this.extractStep(stepElem);
      workflow.addStep(step);
    }
    return workflow;
  }
 
  protected Step extractStep(Element stepElem) {
View Full Code Here

Examples of com.basho.riak.client.http.request.RiakWalkSpec.addStep()

     *         the http.{@link RiakClient}
     */
    static String convert(LinkWalkSpec linkWalkSpec) {
        RiakWalkSpec riakWalkSpec = new RiakWalkSpec();
        for(LinkWalkStep step : linkWalkSpec) {
            riakWalkSpec.addStep(step.getBucket(), step.getTag(), step.getKeep().toString());
        }
        return riakWalkSpec.toString();
    }

    /**
 
View Full Code Here

Examples of com.tinkerpop.gremlin.neo4j.process.graph.Neo4jTraversal.addStep()

     * @return a fluent Gremlin traversal
     */
    public Neo4jTraversal cypher(final String query, final Map<String, Object> parameters) {
        this.tx().readWrite();
        final Neo4jTraversal traversal = Neo4jTraversal.of(this);
        traversal.addStep(new StartStep(traversal, new Neo4jCypherIterator(this.cypher.execute(query, parameters).iterator(), this)));
        return traversal;
    }

    private static Long evaluateToLong(final Object id) throws NumberFormatException {
        Long longId;
View Full Code Here

Examples of com.tinkerpop.gremlin.process.Traversal.addStep()

    }

    @Test
    public void shouldChainTogetherStepsWithNextPreviousInALinkedListStructure() {
        Traversal traversal = new DefaultTraversal<>();
        traversal.addStep(new IdentityStep(traversal));
        traversal.addStep(new HasStep(traversal, null));
        traversal.addStep(new FilterStep(traversal));
        validateToyTraversal(traversal);
    }
View Full Code Here

Examples of com.tinkerpop.gremlin.process.graph.GraphTraversal.addStep()

            final TraversalVertexProgram vertexProgram = traversal.program();
            final ComputerResult computerResult = traversal.result().get();
            this.shell.getInterp().getContext().setProperty(RESULT, computerResult);

            final GraphTraversal traversal2 = new DefaultGraphTraversal<>();
            traversal2.addStep(new ComputerResultStep<>(traversal2, computerResult, vertexProgram, false));
            traversal2.range(0, 19);
            return traversal2;
        } catch (Exception e) {
            throw new RuntimeException(e);
        }
View Full Code Here

Examples of com.volantis.mcs.migrate.api.framework.ResourceMigratorBuilder.addStep()

        builder.setTarget(version2);

        builder.startType("type");
        builder.setRegexpPathRecogniser(filename);
        builder.addRegexpContentRecogniser(version1, inputData);
        builder.addStep(version1, version2,
                new TestStreamMigrator(inputData, outputData));
        builder.endType();

        ResourceMigrator resourceMigrator = builder.getCompletedResourceMigrator();
View Full Code Here

Examples of com.volantis.mcs.migrate.impl.framework.graph.DefaultGraph.addStep()

        // ==================================================================
        // Do the test.
        // ==================================================================

        DefaultGraph graph = new DefaultGraph(mockTarget);
        graph.addStep(mockOld2Target);

        Iterator sequence = graph.getSequence(mockOld);

        assertNotNull("Sequence must be non null", sequence);
        assertEquals("", mockOld2Target, sequence.next());
View Full Code Here

Examples of com.xmlcalabash.extensions.UntilUnchanged.addStep()

            throw XProcException.staticError(15, node, "A cx:until-unchanged must contain a subpipeline.");
        }

        for (XdmNode substepNode : rest) {
            Step substep = readStep(step, substepNode);
            step.addStep(substep);
        }

        step.checkPrimaryIO();
        return step;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.