@RequestParam(value = "commentId", required = true) Long commentId,
@PathVariable String option,
HttpServletRequest request,
HttpServletResponse response) throws JsonGenerationException, JsonMappingException, IOException {
try {
CommentsSocialOptions socialOpt = CommentsSocialOptions.getCommentsSocialOptions(option);
getCommentService().voteCommentSocialOption(commentId, socialOpt);
setSuccesResponse();
} catch (Exception e) {
log.error(e);
setError(e.getMessage(), response);