Package com.github.dynamicextensionsalfresco.osgi

Examples of com.github.dynamicextensionsalfresco.osgi.OsgiService


    @Override
    public void afterPropertiesSet() throws Exception {
        final Map<String,Object> exportables = applicationContext.getBeansWithAnnotation(OsgiService.class);
    for (final Map.Entry<String, Object> entry : exportables.entrySet()) {
            final OsgiService osgiService = applicationContext.findAnnotationOnBean(entry.getKey(), OsgiService.class);
            registerOsgiService(entry.getKey(), osgiService);
        }
  }
View Full Code Here

TOP

Related Classes of com.github.dynamicextensionsalfresco.osgi.OsgiService

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.