Package org.springframework.samples.petclinic

Examples of org.springframework.samples.petclinic.Vets


   *
   * @return a ModelMap with the model attributes for the view
   */
  @RequestMapping("/vets")
  public ModelMap vetsHandler() {
    Vets vets = new Vets();
    vets.getVetList().addAll(this.clinic.getVets());
    return new ModelMap(vets);
  }
View Full Code Here

TOP

Related Classes of org.springframework.samples.petclinic.Vets

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.