GWT Application - Summary Steps

This uses the example client class in the ManagedHubDemo example GWT application.

com.tibco.openspace.demo.client.IframeAppExampleView

Procedure

  1. Create ManagedEvent and ManagedEventHandler classes. See example classes:
    • com.tibco.bpm.web.client.model.managedevents.TemplateManagedEvent
    • com.tibco.bpm.web.client.model.managedevents.TemplateManagedEventHandler
  2. Create a new class that extends the com.tibco.bpm.web.client.model.pagebus.hub.ManagedEventClient abstract class and implement the three abstract methods:
    • public abstract void addEvents();
    • public abstract void addHandlers();
    • public abstract void addSubscribers();

      Optionally override other ManagedEventClient methods as required.

      See the IframeAppExampleView inner class: IframeAppExampleManagedEventClient