Package com.taskadapter.redmineapi.bean

Examples of com.taskadapter.redmineapi.bean.SavedQuery


    return result;
  }

  public static SavedQuery parseSavedQuery(JSONObject object)
      throws JSONException {
    final SavedQuery result = SavedQueryFactory.create(JsonInput.getIntOrNull(object, "id"));
    result.setName(JsonInput.getStringOrNull(object, "name"));
    result.setPublicQuery(JsonInput.getOptionalBool(object, "is_public"));
    result.setProjectId(JsonInput.getIntOrNull(object, "project_id"));
    return result;
  }
View Full Code Here

TOP

Related Classes of com.taskadapter.redmineapi.bean.SavedQuery

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.