Package sos.scheduler.consoleviews.events

Examples of sos.scheduler.consoleviews.events.SOSActions


          e.printStackTrace();
        }
        // Logging
        Iterator iActions = eval.getListOfActions().iterator();
        while (iActions.hasNext()) {
          SOSActions a = (SOSActions) iActions.next();
          this.getLogger().debug1(".... checking action " + a.getName());
          if (a.isActive(eval.getListOfActiveEvents())) {
            this.getLogger().debug1(".... added action:" + a.getName());
            this.getEventHandlerResultFileList().add(a.getCommands());
            NodeList commands = (NodeList) XPathAPI.selectNodeList(a.getCommands(), "command | remove_event | add_event");
            for (int i = 0; i < commands.getLength(); i++) {
              Node n = commands.item(i);
              if (n.getNodeName().equals("command") || n.getNodeName().equals("remove_event") || n.getNodeName().equals("add_event")) {
                this.getLogger().debug1(".. " + n.getNodeName() + " was added");
                NamedNodeMap attr = n.getAttributes();
View Full Code Here

TOP

Related Classes of sos.scheduler.consoleviews.events.SOSActions

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.