String params = "token=" + token;
try {
responseJson = RemoteAPIHandler.getJsonFromAPIEndPoint(APIendpoint.getNotificationCount, params);
} catch (Exception e) {
throw new RemoteAPIHandlerException("Error occured while calling API Endpoint.", e);
}
Gson gson = new Gson();
Map<String, Integer> resultMap = gson.fromJson(responseJson,
new TypeToken<Map<String, Integer>>() {