~stian-sandvold/dhis2/AnalyticsByUser

« back to all changes in this revision

Viewing changes to dhis-2/dhis-services/dhis-service-analytics/src/main/java/org/hisp/dhis/analytics/DataQueryService.java

  • Committer: Lars Helge Overland
  • Date: 2016-07-28 13:40:23 UTC
  • Revision ID: lars@dhis2.org-20160728134023-gadystno6qx4lzcy
Analytics. Impl support for including the numerator, denominator and factor in the response through the query param &includeNumDen=false|true.

Show diffs side-by-side

added added

removed removed

Lines of Context:
63
63
     *        table layout.
64
64
     * @param showHierarchy whether to show the organisation unit hierarchy
65
65
     *        together with the name.
 
66
     * @param includeNumDen whether to include the numerator and denominator of
 
67
     *        values in the response.
66
68
     * @param displayProperty the property to display for meta-data.
67
69
     * @param outputIdScheme the identifier scheme to use in the query response.
68
70
     * @param inputIdScheme the identifier scheme to interpret dimension and filters.
74
76
     */
75
77
    DataQueryParams getFromUrl( Set<String> dimensionParams, Set<String> filterParams, AggregationType aggregationType, String measureCriteria,
76
78
        boolean skipMeta, boolean skipData, boolean skipRounding, boolean completedOnly, boolean hierarchyMeta, boolean ignoreLimit,
77
 
        boolean hideEmptyRows, boolean showHierarchy, DisplayProperty displayProperty, IdentifiableProperty outputIdScheme, IdScheme inputIdScheme,
 
79
        boolean hideEmptyRows, boolean showHierarchy, boolean includeNumDen, DisplayProperty displayProperty, IdentifiableProperty outputIdScheme, IdScheme inputIdScheme,
78
80
        String approvalLevel, Date relativePeriodDate, String userOrgUnit, I18nFormat format );
79
81
 
80
82
    /**