Package org.switchyard.component.sca

Examples of org.switchyard.component.sca.NOPEndpointPublisher


   
    private void initEndpointPublisher() {
        _endpointPublisher = ProviderRegistry.getProvider(RemoteEndpointPublisher.class);
        // if we couldn't find a provider, default to NOP implementation
        if (_endpointPublisher == null) {
            _endpointPublisher = new NOPEndpointPublisher();
            SCALogger.ROOT_LOGGER.noEndpointPublisherRegistered();
        }
        _endpointPublisher.init(CONTEXT_PATH);
    }
View Full Code Here


        _cfg_puller = null;
    }
   
    @Test
    public void testBindingActivationWithNullTargetAndNamespace() throws Exception {
        activator.setEndpointPublisher(new NOPEndpointPublisher());
       
        SCABindingModel scab = new V1SCABindingModel(SwitchYardNamespace.DEFAULT.uri());
        scab.setClustered(true)
            .setLoadBalance("RoundRobin")
            .setTarget(null)
View Full Code Here

TOP

Related Classes of org.switchyard.component.sca.NOPEndpointPublisher

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.