Package com.consol.citrus.admin.model

Examples of com.consol.citrus.admin.model.TestActionData


        super("sleep");
    }

    @Override
    public TestActionData convert(Sleep definition) {
        TestActionData action = new TestActionData(getActionType(), getModelClass());

        addActionProperties(action, definition);

        action.add(property("milliseconds", definition));
        action.add(property("seconds", definition));

        return action;
    }
View Full Code Here


        super("sql");
    }

    @Override
    public TestActionData convert(Sql definition) {
        TestActionData action = new TestActionData(getActionType(), getModelClass());

        action.add(property("datasource", definition));
        action.add(property("ignoreErrors", definition, "false")
                    .options("true", "false"));

        return action;
    }
View Full Code Here

        super(actionType);
    }

    @Override
    public TestActionData convert(Object definition) {
        TestActionData action = new TestActionData(getActionType(), getModelClass());

        addActionProperties(action, definition);

        return action;
    }
View Full Code Here

        super("send");
    }

    @Override
    public TestActionData convert(Send definition) {
        TestActionData action = new TestActionData(getActionType(), getModelClass());

        action.add(property("endoint", definition));
        action.add(property("actor", "TestActor", definition));
        action.add(property("fork", definition, "false")
                .options("true", "false"));

        return action;
    }
View Full Code Here

        super("receive");
    }

    @Override
    public TestActionData convert(Receive definition) {
        TestActionData action = new TestActionData(getActionType(), getModelClass());

        action.add(property("endoint", definition));
        action.add(property("actor", "TestActor", definition));

        return action;
    }
View Full Code Here

TOP

Related Classes of com.consol.citrus.admin.model.TestActionData

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.