/**
*Notifies interested listeners of the load or unload operation.
*@param the type of event to broadcast
*/
protected void notifyAppClientEvent(int eventType) {
ApplicationClientEvent event = new ApplicationClientEvent(eventType,
getApplication(), getClassLoader(), getConfigContext());
appLoaderEventNotifier.notifyListeners(event);
}