Package org.apache.tuscany.sca.test.extended

Examples of org.apache.tuscany.sca.test.extended.MathService


        return -theInt;
    }

    public int delegateNegate(int theInt) {
        SCADomain domain = SCADomain.connect("sca://local");
        MathService service = domain.getService(MathService.class, "MathServiceComponent");
        return service.negate(theInt);      
    }
View Full Code Here

TOP

Related Classes of org.apache.tuscany.sca.test.extended.MathService

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.