Class ResolutionTimeResource


@Path("resolutiontime") @Produces("application/json") public class ResolutionTimeResource extends SearchQueryBackedResource
REST endpoint to validate and retreive the Resolution Time chart.
Since:
v4.0
  • Constructor Details

  • Method Details

    • getChart

      @GET @Path("/generate") public javax.ws.rs.core.Response getChart(@QueryParam("projectOrFilterId") String queryString, @QueryParam("daysprevious") @DefaultValue("30") String days, @QueryParam("periodName") @DefaultValue("daily") String periodName, @QueryParam("returnData") @DefaultValue("false") boolean returnData, @QueryParam("width") @DefaultValue("450") int width, @QueryParam("height") @DefaultValue("300") int height, @QueryParam("inline") @DefaultValue("false") boolean inline)
      Generate a bar chart of the time required to resolve issues.
      Parameters:
      queryString - a filter id (starts with "filter-") or project id (starts with "project-") or jql (starts with "jql-")
      days - The number of days previous to go back for. Must be positive.
      periodName - The name of the period. See - ChartFactory.PeriodName
      returnData - if true, the detailed data will be returned.
      width - the width of the chart in pixels (defaults to 400px)
      height - the height of the chart in pixels (defaults to 300px)
      Returns:
      a response that represents the view for the bar chart.
    • validate

      @GET @Path("validate") public javax.ws.rs.core.Response validate(@QueryParam("projectOrFilterId") String queryString, @QueryParam("daysprevious") @DefaultValue("30") String days, @QueryParam("periodName") @DefaultValue("daily") String periodName)
      Ensures all parameters are valid for the resolution time graph.
      Parameters:
      queryString - a filter id (starts with "filter-") or project id (starts with "project-") or jql (starts with "jql-")
      days - the number of days over which the bar chart is to be drawn.
      periodName - the name of a period See - ChartFactory.PeriodName
      Returns:
      a failure response if the parameters are not valid for producing a bar chart.