Package org.apache.servicemix.nmr.api

Examples of org.apache.servicemix.nmr.api.WireRegistry.register()


        Map<String, Object> properties = new HashMap<String, Object>();
        properties.put("wire-length", 12);
        properties.put("wire-type", "coton");
       
        WireRegistry registry = new WireRegistryImpl();
        registry.register(wire, properties);
        assertEquals(1, registry.getServices().size());
        assertEquals(properties, registry.getProperties(wire));
       
        assertSame(wire, registry.getWire(properties));
       
View Full Code Here


        from.put("wire-length", 12);
        from.put("wire-type", "coton");
        Wire wire = ServiceHelper.createWire(from, ServiceHelper.createMap("wire-usage", "knitting"));
       
        WireRegistry registry = new WireRegistryImpl();
        registry.register(wire);
        assertEquals(1, registry.getServices().size());
        assertEquals(from, registry.getProperties(wire));
       
        assertSame(wire, registry.getWire(from));
       
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.