params += "description=" + projectDescription;
try {
responseJson = RemoteAPIHandler.postToAPIEndPoint(APIendpoint.createNewProject, params);
} catch (Exception e) {
throw new RemoteAPIHandlerException("Error occured while performing POST operation to API Endpoint.", e);
}
Gson gson = new Gson();
Map<String, String> resultMap = gson.fromJson(responseJson,
new TypeToken<Map<String, String>>() {