All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hisp.dhis.model.datavalueset.DataValueSetImportOptions Maven / Gradle / Ivy

There is a newer version: 2.0.4
Show newest version
package org.hisp.dhis.model.datavalueset;

import lombok.Getter;
import lombok.Setter;
import lombok.ToString;
import lombok.experimental.Accessors;

import org.hisp.dhis.model.IdScheme;

@Getter
@Setter
@ToString
@Accessors( chain = true )
public class DataValueSetImportOptions
{
    private IdScheme dataElementIdScheme;

    private IdScheme orgUnitIdScheme;

    private IdScheme categoryOptionComboIdScheme;

    private IdScheme idScheme;

    private Boolean dryRun;

    private Boolean preheatCache;

    private Boolean skipAudit;

    private DataValueSetImportOptions()
    {
    }

    public static DataValueSetImportOptions instance()
    {
        return new DataValueSetImportOptions();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy