Examples of Votes


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

  private final BasicUserJsonParser basicUserJsonParser = new BasicUserJsonParser();
  @Override
  public Votes parse(JSONObject json) throws JSONException {
    final BasicVotes basicVotes = basicVotesJsonParser.parse(json);
    final Collection<BasicUser> users = JsonParseUtil.parseJsonArray(json.getJSONArray("voters"), basicUserJsonParser);
    return new Votes(basicVotes.getSelf(), basicVotes.getVotes(), basicVotes.hasVoted(), users);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.