Skip to content

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,8 @@
public interface EpipulseDiseaseExportFacade {

public void startPertussisExport(String uuid);

public void startMeaslesExport(String uuid);

public void startIpiExport(String uuid);
}
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,13 @@ public class EpipulseDiseaseExportResult {
private int maxImmunizations;
private List<EpipulseDiseaseExportEntryDto> exportEntryList;

// MEAS repeatable field max counts
private int maxComplicationDiagnosis;
private int maxClusterSettings;
private int maxPlaceOfInfection;
private int maxSpecimenVirDetect;
private int maxSpecimenSero;

public int getMaxPathogenTests() {
return maxPathogenTests;
}
Expand All @@ -46,4 +53,44 @@ public List<EpipulseDiseaseExportEntryDto> getExportEntryList() {
public void setExportEntryList(List<EpipulseDiseaseExportEntryDto> exportEntryList) {
this.exportEntryList = exportEntryList;
}

public int getMaxComplicationDiagnosis() {
return maxComplicationDiagnosis;
}

public void setMaxComplicationDiagnosis(int maxComplicationDiagnosis) {
this.maxComplicationDiagnosis = maxComplicationDiagnosis;
}

public int getMaxClusterSettings() {
return maxClusterSettings;
}

public void setMaxClusterSettings(int maxClusterSettings) {
this.maxClusterSettings = maxClusterSettings;
}

public int getMaxPlaceOfInfection() {
return maxPlaceOfInfection;
}

public void setMaxPlaceOfInfection(int maxPlaceOfInfection) {
this.maxPlaceOfInfection = maxPlaceOfInfection;
}

public int getMaxSpecimenVirDetect() {
return maxSpecimenVirDetect;
}

public void setMaxSpecimenVirDetect(int maxSpecimenVirDetect) {
this.maxSpecimenVirDetect = maxSpecimenVirDetect;
}

public int getMaxSpecimenSero() {
return maxSpecimenSero;
}

public void setMaxSpecimenSero(int maxSpecimenSero) {
this.maxSpecimenSero = maxSpecimenSero;
}
}
Loading
Loading