Package com.zappos.model

Examples of com.zappos.model.UserInput


  //The function redirects to the index page which requires input from the users.
  @RequestMapping(value ="/", method = RequestMethod.GET)
  public  ModelAndView showpage() {
    ModelAndView modelAndView = new ModelAndView("index");
    modelAndView.addObject("desired", new UserInput());
    return modelAndView;
  }
View Full Code Here

TOP

Related Classes of com.zappos.model.UserInput

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.