Search in sources :

Example 6 with NopAction

use of won.bot.framework.eventbot.listener.baStateBots.NopAction in project webofneeds by researchstudio-sat.

the class CompletedSPClosingBot method setupActions.

@Override
protected List<BATestScriptAction> setupActions() {
    List<BATestScriptAction> actions = new ArrayList();
    actions.add(new NopAction());
    actions.add(new BATestScriptAction(true, "MESSAGE_CLOSE", URI.create(WON_TX.STATE_COMPLETED.getURI())));
    actions.add(new BATestScriptAction(false, "MESSAGE_CLOSED", URI.create(WON_TX.STATE_CLOSING.getURI())));
    return actions;
}
Also used : BATestScriptAction(won.bot.framework.eventbot.listener.baStateBots.BATestScriptAction) ArrayList(java.util.ArrayList) NopAction(won.bot.framework.eventbot.listener.baStateBots.NopAction)

Example 7 with NopAction

use of won.bot.framework.eventbot.listener.baStateBots.NopAction in project webofneeds by researchstudio-sat.

the class CompletingSPCancelingFAilingUriBot method setupActions.

// CompletingSPCancelingFailingUriBot
@Override
protected List<BATestScriptAction> setupActions() {
    List<BATestScriptAction> actions = new ArrayList();
    // automatic
    // actions.add(new BATestScriptAction(false, "MESSAGE_CANCEL", URI.create(WON_BA.STATE_CANCELING.getURI()), 3));
    actions.add(new NopAction());
    actions.add(new BATestScriptAction(true, URI.create(WON_TX.MESSAGE_FAIL.getURI()), URI.create(WON_TX.STATE_CANCELING_COMPLETING.getURI())));
    actions.add(new BATestScriptAction(false, URI.create(WON_TX.MESSAGE_FAILED.getURI()), URI.create(WON_TX.STATE_FAILING_ACTIVE_CANCELING_COMPLETING.getURI())));
    return actions;
}
Also used : BATestScriptAction(won.bot.framework.eventbot.listener.baStateBots.BATestScriptAction) ArrayList(java.util.ArrayList) NopAction(won.bot.framework.eventbot.listener.baStateBots.NopAction)

Example 8 with NopAction

use of won.bot.framework.eventbot.listener.baStateBots.NopAction in project webofneeds by researchstudio-sat.

the class CompletingSPCancelingUriBot method setupActions.

@Override
protected List<BATestScriptAction> setupActions() {
    List<BATestScriptAction> actions = new ArrayList();
    // automatic
    // actions.add(new BATestScriptAction(false, "MESSAGE_CANCEL", URI.create(WON_BA.STATE_COMPLETING.getURI()));
    actions.add(new NopAction());
    actions.add(new BATestScriptAction(true, URI.create(WON_TX.MESSAGE_CANCELED.getURI()), URI.create(WON_TX.STATE_CANCELING_COMPLETING.getURI())));
    return actions;
}
Also used : BATestScriptAction(won.bot.framework.eventbot.listener.baStateBots.BATestScriptAction) ArrayList(java.util.ArrayList) NopAction(won.bot.framework.eventbot.listener.baStateBots.NopAction)

Example 9 with NopAction

use of won.bot.framework.eventbot.listener.baStateBots.NopAction in project webofneeds by researchstudio-sat.

the class CompletedSPCompensatingFailingBot method setupActions.

@Override
protected List<BATestScriptAction> setupActions() {
    List<BATestScriptAction> actions = new ArrayList();
    actions.add(new NopAction());
    actions.add(new BATestScriptAction(true, "MESSAGE_FAIL", URI.create(WON_TX.STATE_COMPENSATING.getURI())));
    actions.add(new BATestScriptAction(false, "MESSAGE_FAILED", URI.create(WON_TX.STATE_FAILING_COMPENSATING.getURI())));
    return actions;
}
Also used : BATestScriptAction(won.bot.framework.eventbot.listener.baStateBots.BATestScriptAction) ArrayList(java.util.ArrayList) NopAction(won.bot.framework.eventbot.listener.baStateBots.NopAction)

Example 10 with NopAction

use of won.bot.framework.eventbot.listener.baStateBots.NopAction in project webofneeds by researchstudio-sat.

the class ActiveFPUriBot method setupActions.

@Override
protected List<BATestScriptAction> setupActions() {
    List<BATestScriptAction> actions = new ArrayList();
    actions.add(new NopAction());
    return actions;
}
Also used : BATestScriptAction(won.bot.framework.eventbot.listener.baStateBots.BATestScriptAction) ArrayList(java.util.ArrayList) NopAction(won.bot.framework.eventbot.listener.baStateBots.NopAction)

Aggregations

ArrayList (java.util.ArrayList)28 BATestScriptAction (won.bot.framework.eventbot.listener.baStateBots.BATestScriptAction)28 NopAction (won.bot.framework.eventbot.listener.baStateBots.NopAction)28