Package org.apache.tuscany.interop

Examples of org.apache.tuscany.interop.ComplexTypeWithContentType


     
        }

        // test ComplexTypeWithContentType
        {
            ComplexTypeWithContentType param = null;
           
        InteropFactory factory = InteropFactory.INSTANCE;
        param = factory.createComplexTypeWithContentType();
        param.setSimpleTypeWithName("SomeText");
      
            ComplexTypeWithContentType result = greeterClient.greetComplexTypeWithContentType(param);
           
        assertEquals("data not changed corretly", "SomeChangedText", result.getSimpleTypeWithName());
     
        }
    }
View Full Code Here


     
        }

        // test ComplexTypeWithContentType
        {
            ComplexTypeWithContentType param = null;
           
        InteropFactory factory = InteropFactory.INSTANCE;
        param = factory.createComplexTypeWithContentType();
        param.setSimpleTypeWithName("SomeText");
      
            ComplexTypeWithContentType result = greeterClient.greetComplexTypeWithContentType(param);
           
        assertEquals("data not changed corretly", "SomeChangedText", result.getSimpleTypeWithName());
     
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.tuscany.interop.ComplexTypeWithContentType

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.