Package org.springframework.osgi.service.importer.support

Examples of org.springframework.osgi.service.importer.support.AbstractOsgiServiceImportFactoryBean


    return ImporterControllerUtils.getControllerFor(importer).isSatisfied();
  }

  private boolean isMandatory(Object importer) {
    if (importer instanceof AbstractOsgiServiceImportFactoryBean) {
      AbstractOsgiServiceImportFactoryBean imp = (AbstractOsgiServiceImportFactoryBean) importer;
      return imp.getCardinality().isMandatory();
    }

    return false;
  }
View Full Code Here

TOP

Related Classes of org.springframework.osgi.service.importer.support.AbstractOsgiServiceImportFactoryBean

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.