Package helloworld.sdo

Examples of helloworld.sdo.Name


public class HelloWorldClientComponent implements HelloWorldClient {
  
    HelloWorldService helloWorldService;
   
    public String getGreetings(String firstName, String lastName) {
        Name name = HelloworldFactory.INSTANCE.createName();
        name.setFirst(firstName);
        name.setLast(lastName);
        return helloWorldService.getGreetings(name);
    }
View Full Code Here

TOP

Related Classes of helloworld.sdo.Name

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.