Package org.switchyard.component.bean.multiversionref.oldinvservice

Examples of org.switchyard.component.bean.multiversionref.oldinvservice.A


    @Inject @Reference("InventoryService")
    private OldInventoryService oldInventoryService;

    @Override
    public String doStuff(String input) {
        A result = oldInventoryService.getInventory(new A());
        return "old";
    }
View Full Code Here


        return new B();
    }

    @Transformer
    public A transformB2A(B b) {
        return new A();
    }
View Full Code Here

TOP

Related Classes of org.switchyard.component.bean.multiversionref.oldinvservice.A

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.