private final EventClient eventClient;
private final List<NotificationListener> listeners = new LinkedList<NotificationListener>();
private final Map<NotificationListener, Object> handbackMap = new HashMap<NotificationListener, Object>();
public NotificationBridge(String url) {
eventClient = new EventClientImpl(url, 0);
eventClient.addEventListener(this);
}