Examples of OneSetter


Examples of org.springframework.osgi.compendium.OneSetter

  }

  public void testInjectInfoSimple() {
    Map props = new HashMap();
    props.put("prop", "14");
    OneSetter instance = new OneSetter();
    msbm = new DefaultManagedServiceBeanManager(UpdateStrategy.CONTAINER_MANAGED, null, cam, null);
    msbm.applyInitialInjection(instance, props);
    assertEquals(new Long(14), instance.getProp());
  }
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.