Package org.impalaframework.service

Examples of org.impalaframework.service.NamedServiceEndpoint


        if (!beansEncountered.contains(beanName) && !referenceMap.containsKey(beanName)) {
           
            if (SpringServiceBeanUtils.isSingleton(beanFactory, beanName)) {
       
                //only if there is a contribution end point corresponding with bean name do we register the service
                NamedServiceEndpoint endPoint = SpringModuleServiceUtils.findServiceEndpoint(beanFactory, beanName);
                if (hasRegisterableEndpoint(beanName, endPoint)) {         
                    logger.info("Contributing bean " + beanName + " from module " + moduleName);
                   
                    final ServiceBeanReference service = new StaticSpringServiceBeanReference(bean);
                    final ServiceRegistryEntry serviceReference = serviceRegistry.addService(beanName, moduleName, service, beanClassLoader);
View Full Code Here

TOP

Related Classes of org.impalaframework.service.NamedServiceEndpoint

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.