Package org.apache.aries.application.management

Examples of org.apache.aries.application.management.AriesApplicationListener


            throw new Error(e);
        }
        if (references != null && !references.isEmpty()) {
            GeronimoApplicationEvent event = new GeronimoApplicationEvent(application, state);
            for (ServiceReference<AriesApplicationListener> reference : references) {
                AriesApplicationListener listener = bundleContext.getService(reference);
                if (listener != null) {
                    try {
                        listener.applicationChanged(event);
                    } catch (Exception e) {
                        LOG.debug("Error calling AriesApplicationListener", e);
                    } finally {
                        bundleContext.ungetService(reference);
                    }
View Full Code Here

TOP

Related Classes of org.apache.aries.application.management.AriesApplicationListener

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.