Package org.apache.tuscany.sca.assembly.impl

Examples of org.apache.tuscany.sca.assembly.impl.SCABindingFactoryImpl


    @Override
    public Binding handleUnknownEndpoint(EndpointReference endpointReference) {
       
        if (endpointReference.getTargetEndpoint().getURI().endsWith("Service1")) {
            SCABinding b = new SCABindingFactoryImpl().createSCABinding();
            b.setURI("http://localhost:8085/Service1/Helloworld");
            return b;
           
        } else if (endpointReference.getTargetEndpoint().getURI().endsWith("Service2")) {
            SCABinding b = new SCABindingFactoryImpl().createSCABinding();
            b.setURI("http://localhost:8085/Service2/Helloworld");
            return b;
        }

        return null;
View Full Code Here

TOP

Related Classes of org.apache.tuscany.sca.assembly.impl.SCABindingFactoryImpl

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.