Package com.sivalabs.addressbook.model

Examples of com.sivalabs.addressbook.model.Contact


  }
 
  @RequestMapping(method=RequestMethod.GET, value="newContact")
  public String newContactForm(Model model)
  {
    model.addAttribute("contact", new Contact());
    return "phonebook/newContact";
  }
View Full Code Here


    return "redirect:page?view=phonebook/phonebook";
  }
 
  @RequestMapping("getContactJSON")
  public @ResponseBody JSONResponse<Contact> getContactJSON(@RequestParam("id")Long id) {
    Contact contact =this.contactRepository.findOne(id);
    return new JSONResponse<Contact>(contact);
   
  }
View Full Code Here

TOP

Related Classes of com.sivalabs.addressbook.model.Contact

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.