Package com.sun.enterprise.server.event

Examples of com.sun.enterprise.server.event.ApplicationEvent


    public void generateEntryContext(Object context) {
         ServerEntryHelper.generateAppLoaderEntryContext((Descriptor) context);
    }

    protected void notifyAppEvent(int eventType) {
  ApplicationEvent event = new ApplicationEvent(eventType,
    getApplication(), getClassLoader(), dynamicConfigContext);
        generateEntryContext(getApplication());
  loaderEventNotifier.notifyListeners(event);
    }
View Full Code Here


        generateEntryContext(getApplication());
  loaderEventNotifier.notifyListeners(event);
    }

    protected void notifyEarLifecycleEvent(int eventType) {
  ApplicationEvent event = new ApplicationEvent(eventType,
    getApplication(), getClassLoader(), dynamicConfigContext);
  loaderEventNotifier.notifyEarListeners(event);
    }
View Full Code Here

TOP

Related Classes of com.sun.enterprise.server.event.ApplicationEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.