* @see org.apache.airavata.ws.monitor.event.EventListener#eventReceived(org.apache.airavata.ws.monitor.event.Event)
*/
public void eventReceived(Event event) {
Type type = event.getType();
if (type.equals(Type.MONITOR_CONFIGURATION_CHANGED)) {
MonitorConfiguration configuration = this.engine.getMonitor().getConfiguration();
boolean valid = configuration.isValid();
resumeMonitoringItem.setVisible(valid);
pauseMonitoringItem.setVisible(false);
resetMonitoringItem.setVisible(false);
} else if (type.equals(Type.MONITOR_STARTED)) {
resumeMonitoringItem.setVisible(false);