Package org.openengsb.core.api

Examples of org.openengsb.core.api.CompositeConnectorStrategy


    @Override
    protected CompositeConnector updateHandlerAttributes(CompositeConnector handler, Map<String, String> attributes) {
        String strategyFilter = createStrategyFilterString(attributes.get("compositeStrategy"));
        Filter filter = FilterUtils.makeFilter(CompositeConnectorStrategy.class, strategyFilter);
        CompositeConnectorStrategy strategy =
                utilsService.getOsgiServiceProxy(filter, CompositeConnectorStrategy.class);
        handler.setQueryString(attributes.get("queryString"));
        handler.setCompositeHandler(strategy);
        return handler;
    }
View Full Code Here

TOP

Related Classes of org.openengsb.core.api.CompositeConnectorStrategy

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.