Package com.sivalabs.springdatarest.entities

Examples of com.sivalabs.springdatarest.entities.Contact


  }
 
  @RequestMapping(value="/{userId}/contacts/{contactId}", produces=MediaType.APPLICATION_JSON_VALUE)
  @ResponseBody
  public HttpEntity<Contact> getContact(@PathVariable("userId") int userId, @PathVariable("contactId") int contactId) {
    Contact contact = userService.findUserContact(userId, contactId);
    return new HttpEntity<Contact>(contact);
  }
View Full Code Here

TOP

Related Classes of com.sivalabs.springdatarest.entities.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.