Package org.apache.servicemix.nmr.core.util

Examples of org.apache.servicemix.nmr.core.util.MapToDictionary


        }
    }
   
    protected ServiceRegistration registerWire(Wire wire) {
        return bundle.getBundleContext().registerService(Wire.class.getName(),
                                                         wire, new MapToDictionary(wire.getFrom()));
    }
View Full Code Here


    @Override
    protected void doRegister(InternalEndpoint endpoint, Map<String, ?> properties) {
        ServiceRegistration reg = bundleContext.registerService(
                                      InternalEndpoint.class.getName(),
                                      endpoint,
                                      new MapToDictionary(properties));
        registrations.put(endpoint, reg);
    }
View Full Code Here

TOP

Related Classes of org.apache.servicemix.nmr.core.util.MapToDictionary

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.