Package com.atlassian.jira.rest.client.domain

Examples of com.atlassian.jira.rest.client.domain.SecurityLevel


  public SecurityLevel parse(JSONObject json) throws JSONException {
    final String name = json.getString("name");
        final String description = json.getString("description");
        final Long id = JsonParseUtil.getOptionalLong(json, "id");
    final URI selfUri = JsonParseUtil.getSelfUri(json);
    return new SecurityLevel(selfUri, id, name, description);
  }
View Full Code Here

TOP

Related Classes of com.atlassian.jira.rest.client.domain.SecurityLevel

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.