Search in sources :

Example 26 with NopAction

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

the class ActiveCannotCompleteVoteFPUriBot method setupActions.

@Override
protected List<BATestScriptAction> setupActions() {
    List<BATestScriptAction> actions = new ArrayList();
    actions.add(new NopAction());
    actions.add(new NopAction());
    actions.add(new BATestScriptAction(true, URI.create(WON_TX.MESSAGE_CANNOTCOMPLETE.getURI()), URI.create(WON_TX.STATE_ACTIVE.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 27 with NopAction

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

the class ActiveExitVoteFPUriBot method setupActions.

@Override
protected List<BATestScriptAction> setupActions() {
    List<BATestScriptAction> actions = new ArrayList();
    actions.add(new NopAction());
    actions.add(new NopAction());
    actions.add(new BATestScriptAction(true, URI.create(WON_TX.MESSAGE_EXIT.getURI()), URI.create(WON_TX.STATE_ACTIVE.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 28 with NopAction

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

the class ActiveSPCancelingFailingUriBot 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_ACTIVE.getURI()), 3));
    actions.add(new NopAction());
    actions.add(new BATestScriptAction(true, URI.create(WON_TX.MESSAGE_FAIL.getURI()), URI.create(WON_TX.STATE_CANCELING_ACTIVE.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)

Aggregations

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