public void | handleApplicationClientEvent(ApplicationClientEvent event)This method is invoked whenever an App client is loaded/unloaded
ApplicationClientEvent.getEventType() specifies the exact
application client event. Note that, this method is called
even for stand alone modules.
ApplicationClientEvent.getApplication().isVirtual() will be
true for stand-alone module and false otherwise.
Generally, APPLICATION_CLIENT events are sent in the following order
a) BEFORE_APPLICATION_CLIENT_LOAD
b) AFTER_APPLICATION_CLIENT_LOAD
c) BEFORE_APPLICATION_CLIENT_UNLOAD
d) AFTER_APPLICATION_CLIENT_UNLOAD
|