Package org.apache.sling.launchpad.api

Examples of org.apache.sling.launchpad.api.StartupListener


                    public void modifiedService(final ServiceReference reference, final Object service) {
                        // nothing to do
                    }

                    public Object addingService(final ServiceReference reference) {
                        final StartupListener listener = (StartupListener) context.getService(reference);
                        if ( listener != null ) {
                            listener.inform(startupMode, finished.get());
                        }
                        return listener;
                    }
                });
        this.listenerTracker.open();
View Full Code Here

TOP

Related Classes of org.apache.sling.launchpad.api.StartupListener

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.