Package com.wyn.rest.server.data

Examples of com.wyn.rest.server.data.JSONResponse


    return notesService.listNotes();
  }
 
  @RequestMapping(value="insert", method=RequestMethod.PUT, consumes=MediaType.APPLICATION_JSON_VALUE)
  public @ResponseBody JSONResponse put(@RequestBody NoteList notes) {
    JSONResponse response = new JSONResponse();
   
    try {
      notesService.saveNotes(notes);
      response.setStatusCode(201);
      response.setMessage("Success");
     
    } catch (Exception e) {
      response.setStatusCode(500);
      response.setMessage("Internal Server ERROR. Message: "+e.getMessage());
      e.printStackTrace();
    }
   
    return response;
  }
View Full Code Here

TOP

Related Classes of com.wyn.rest.server.data.JSONResponse

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.