org.hisp.dhis.model.Objects Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dhis2-java-client Show documentation
Show all versions of dhis2-java-client Show documentation
DHIS 2 API client for Java.
package org.hisp.dhis.model;
import java.util.ArrayList;
import java.util.List;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import lombok.experimental.Accessors;
import com.fasterxml.jackson.annotation.JsonProperty;
@Getter
@Setter
@Accessors( chain = true )
@NoArgsConstructor
public class Objects
{
@JsonProperty
private List dashboards = new ArrayList<>();
@JsonProperty
private List dataElements = new ArrayList<>();
@JsonProperty
private List dataElementGroups = new ArrayList<>();
@JsonProperty
private List organisationUnits = new ArrayList<>();
@JsonProperty
private List organisationUnitGroups = new ArrayList<>();
@JsonProperty
private List organisationUnitGroupSets = new ArrayList<>();
@JsonProperty
private List organisationUnitLevels = new ArrayList<>();
@JsonProperty
private List categoryOptions = new ArrayList<>();
@JsonProperty
private List categories = new ArrayList<>();
@JsonProperty
private List categoryCombos = new ArrayList<>();
@JsonProperty
private List categoryOptionCombos = new ArrayList<>();
@JsonProperty
private List optionSets = new ArrayList<>();
@JsonProperty
private List dataElementGroupSets = new ArrayList<>();
@JsonProperty
private List indicatorTypes = new ArrayList<>();
@JsonProperty
private List indicators = new ArrayList<>();
@JsonProperty
private List dataSets = new ArrayList<>();
@JsonProperty
private List programs = new ArrayList<>();
@JsonProperty
private List programIndicators = new ArrayList<>();
@JsonProperty
private List categoryOptionGroups = new ArrayList<>();
@JsonProperty
private List categoryOptionGroupSets = new ArrayList<>();
@JsonProperty
private List analyticsTableHooks = new ArrayList<>();
@JsonProperty
private List dimensions = new ArrayList<>();
@JsonProperty
private List periodTypes = new ArrayList<>();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy