Package edu.indiana.extreme.xbaya.monitor

Examples of edu.indiana.extreme.xbaya.monitor.MonitorEvent


     */
    public void handleNotification(String message) {
        try {
            String soapBody = WsmgUtil.getSoapBodyContent(message);
            XmlElement event = XMLUtil.stringToXmlElement(soapBody);
            handleEvent(new MonitorEvent(event), true, this.workflow.getGraph());
           
        } catch (XmlBuilderException e) {
            // Just log them because they can be unrelated messages sent to
            // this topic by accident.
            logger.warning("Could not parse received notification: " + message,
View Full Code Here

TOP

Related Classes of edu.indiana.extreme.xbaya.monitor.MonitorEvent

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.