@GET
@Path("/latest")
@Produces(MediaType.APPLICATION_JSON + "; charset=UTF-8")
public JSONModel getLatesTweets(){
JSONModel returnedJSON;
try {
returnedJSON = new JSONModelList<TweetModel>(ApplicationConstants.JSON_STATUS_OK, iTwitterService.getTweetsInHomeTimeline());
}
catch (Exception e) {
String message = e.getLocalizedMessage();