Package evolaris.framework.smsservices.business.commands

Examples of evolaris.framework.smsservices.business.commands.EventVariables


    log.setParameter(executionForm.getMessage());
    interactionLogManager.writeInteractionLog(log);   
   
    interactionLogManager.writeInteractionLog(log);   
   
    EventVariables eventVariables = new EventVariables(eventParameters);
    MacroCommand macroCommand = new MacroCommand(eventParameters,eventVariables, commandEntries);
    Result result = macroCommand.execute();
   
    LOGGER.debug("command interpretation finished with result: " + result);
   
View Full Code Here


      log.setOperation(InteractionLogManager.EVENT_TIMER_SIMULATED);
      interactionLogManager.writeInteractionLog(log);   
     
      interactionLogManager.writeInteractionLog(log);   
     
      EventVariables eventVariables = new EventVariables(timerEventParameters);
      MacroCommand macroCommand = new MacroCommand(timerEventParameters,eventVariables, commandEntries);
      Result result = macroCommand.execute();
      if(result.getValue() != null){
        req.setAttribute("result", result.getValue());
      }
View Full Code Here

              Set commandEntries = invocation.getCommandEntries();

              // table-driven action evaluation
              if (commandEntries.size() >= 1){
                EventVariables eventVariables = new EventVariables(eventParameters);
                MacroCommand macroCommand = new MacroCommand(eventParameters,eventVariables, commandEntries);
                Result result = macroCommand.execute();
                LOGGER.debug("command interpretation result: " + result.getValue());

              } else {
View Full Code Here

           contactAssignLabel = sortLabel;
        }
      }
     
      // check if command not usuable in this list by creating a command entry with the dummy event parameters
      if (!interaction.isError() && eventParameters != null && commandEntryExtender.createCommand(eventParameters, new EventVariables(eventParameters), null) == null){
        interaction.setError(true);
        interaction.setErrorDescription(messages.getString("InteractionNotAllowedInThisInteractionList"));
      }
     
      // add condition entries if appropriate           
View Full Code Here

TOP

Related Classes of evolaris.framework.smsservices.business.commands.EventVariables

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.