Class ResolutionResource

java.lang.Object
com.atlassian.jira.rest.v2.issue.ResolutionResource

@Path("resolution") @Consumes("application/json") @Produces("application/json") public class ResolutionResource extends Object
Since:
4.2
  • Constructor Details

  • Method Details

    • getResolutions

      @GET public jakarta.ws.rs.core.Response getResolutions()
      Returns a list of all resolutions.
      Returns:
      a list of Jira issue resolutions
    • getPaginatedResolutions

      @GET @Path("page") @Produces("application/json") @ExperimentalApi public jakarta.ws.rs.core.Response getPaginatedResolutions(@DefaultValue("0") @QueryParam("startAt") Long startAt, @DefaultValue("100") @QueryParam("maxResults") Integer maxResults, @DefaultValue("") @QueryParam("query") String query)
      Returns paginated list of filtered resolutions
      Parameters:
      startAt - the index of the first status to return
      maxResults - the maximum number of statuses to return
      query - the string that status names will be matched with
      Since:
      9.1
    • getResolution

      @GET @Path("{id}") public jakarta.ws.rs.core.Response getResolution(@PathParam("id") String id)
      Returns a resolution.
      Parameters:
      id - a String containing the resolution id
      Returns:
      a Jira issue resolution