* @return
* @throws IssueTrackerException
*/
private JSONObject getPriorityTypes(String token, JSONObject jsonObject, String url) throws IssueTrackerException {
JiraIssueReporter reporter = JiraIssueReporter.getInstance();
List<GenericPriority> priorities = null;
try {
priorities = reporter.getPriorityTypes(token, url);
} catch (IssueTrackerException e) {
ExceptionHandler.handleException("Error obtaining priority types", e, log);
}
JSONArray priorityNames = new JSONArray();