Package com.fengjing.framework.spring.dwr.model

Examples of com.fengjing.framework.spring.dwr.model.Address


    return "Hello,"+username;
  }
 
  @RemoteMethod
  public Address getAddress() throws Exception {
    Address address = new Address();   
    address.setStreet("2245 NW Overlook Drive");
    address.setCity("Portland");
    address.setState("Oregon");
    return address;
  }
View Full Code Here

TOP

Related Classes of com.fengjing.framework.spring.dwr.model.Address

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.