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

Examples of org.springframework.osgi.service.importer.support.internal.collection.OsgiServiceList.afterPropertiesSet()


  protected Collection createCollection() {
    ClassLoader classLoader = BundleDelegatingClassLoader.createBundleClassLoaderFor(bundleContext.getBundle());
    OsgiServiceList col = new OsgiServiceList(null, bundleContext, classLoader, null);
    col.setRequiredAtStartup(false);
    // col.setInterfaces(new Class[] { Date.class });
    col.afterPropertiesSet();
    return col;
  }

  public void testListContent() throws Exception {
    List list = (List) createCollection();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.