Package org.impalaframework.service

Examples of org.impalaframework.service.ContributionEndpoint


  protected final void processContributions(Collection<String> contributions) {
    for (String beanName : contributions) {

      Object bean = beanFactory.getBean(beanName);

      ContributionEndpoint endPoint = getContributionEndPoint(beanName, bean);

      //if contribution endpoint exists corresponding with bean name, then we add
      //to the contribution map, and register the bean
      if (endPoint != null) {
        contributionMap.put(bean, endPoint);
View Full Code Here


      }
    }
  }

  protected ContributionEndpoint getContributionEndPoint(String beanName, Object bean) {
    ContributionEndpoint endPoint = ModuleContributionUtils.findContributionEndPoint(beanFactory, beanName);
    return endPoint;
  }
View Full Code Here

TOP

Related Classes of org.impalaframework.service.ContributionEndpoint

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.