Package com.asakusafw.windgate.bootstrap

Examples of com.asakusafw.windgate.bootstrap.ExecutionKind


            GateProfile profile,
            TestExecutionPlan.Command command) throws IOException {
        List<String> cmd = command.getCommandTokens();
        GateScript script = loadScript(context, classLoader, cmd.get(ARG_SCRIPT));
        String sessionId = context.getExecutionId();
        ExecutionKind mode = ExecutionKind.parse(cmd.get(ARG_SESSION_KIND));
        String arguments = cmd.get(ARG_ARGUMENTS);
        GateTask task = new GateTask(
                profile,
                script,
                sessionId,
View Full Code Here

TOP

Related Classes of com.asakusafw.windgate.bootstrap.ExecutionKind

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.