Package com.sivalabs.jacksondemo.entities

Examples of com.sivalabs.jacksondemo.entities.Contact


  @Autowired
  private ContactService contactService;
 
  @RequestMapping(value="/{contactId}", method=RequestMethod.GET, produces=JSON_TYPE)
  public ResponseEntity<Contact> findContact(@PathVariable("contactId") Integer contactId) {
    Contact contact = contactService.findContactById(contactId);
    ResponseEntity<Contact> response = new ResponseEntity<>(getCopy(contact), HttpStatus.OK);
    return response;
  }
View Full Code Here


  Contact getCopy(Contact contact)
  {
    if(contact == null){
      return contact;
    }
    Contact contactCopy = new Contact();
    contactCopy.setId(contact.getId());
    contactCopy.setFirstName(contact.getFirstName());
    contactCopy.setLastName(contact.getLastName());
    contactCopy.setEmail(contact.getEmail());
    contactCopy.setPhone(contact.getPhone());
    contactCopy.setDob(contact.getDob());
   
    return contactCopy;
  }
View Full Code Here

TOP

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