forked from SORMAS-Foundation/SORMAS-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'SORMAS-Foundation:master' into master
- Loading branch information
Showing
311 changed files
with
18,923 additions
and
2,624 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
77 changes: 77 additions & 0 deletions
77
...src/main/java/de/symeda/sormas/api/docgeneneration/QuarantineOrderDocumentOptionsDto.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
package de.symeda.sormas.api.docgeneneration; | ||
|
||
import de.symeda.sormas.api.sample.PathogenTestReferenceDto; | ||
import de.symeda.sormas.api.sample.SampleReferenceDto; | ||
import de.symeda.sormas.api.vaccination.VaccinationReferenceDto; | ||
|
||
import javax.validation.constraints.NotNull; | ||
import java.io.Serializable; | ||
import java.util.Properties; | ||
|
||
public class QuarantineOrderDocumentOptionsDto implements Serializable { | ||
|
||
private String templateFile; | ||
private SampleReferenceDto sample; | ||
private PathogenTestReferenceDto pathogenTest; | ||
private VaccinationReferenceDto vaccinationReference; | ||
private Properties extraProperties; | ||
private Boolean shouldUploadGeneratedDoc; | ||
private DocumentWorkflow documentWorkflow; | ||
|
||
|
||
public String getTemplateFile() { | ||
return templateFile; | ||
} | ||
|
||
public void setTemplateFile(String templateFile) { | ||
this.templateFile = templateFile; | ||
} | ||
|
||
public SampleReferenceDto getSample() { | ||
return sample; | ||
} | ||
|
||
public void setSample(SampleReferenceDto sample) { | ||
this.sample = sample; | ||
} | ||
|
||
public PathogenTestReferenceDto getPathogenTest() { | ||
return pathogenTest; | ||
} | ||
|
||
public void setPathogenTest(PathogenTestReferenceDto pathogenTest) { | ||
this.pathogenTest = pathogenTest; | ||
} | ||
|
||
public VaccinationReferenceDto getVaccinationReference() { | ||
return vaccinationReference; | ||
} | ||
|
||
public void setVaccinationReference(VaccinationReferenceDto vaccinationReference) { | ||
this.vaccinationReference = vaccinationReference; | ||
} | ||
|
||
public Properties getExtraProperties() { | ||
return extraProperties; | ||
} | ||
|
||
public void setExtraProperties(Properties extraProperties) { | ||
this.extraProperties = extraProperties; | ||
} | ||
|
||
public Boolean getShouldUploadGeneratedDoc() { | ||
return shouldUploadGeneratedDoc; | ||
} | ||
|
||
public void setShouldUploadGeneratedDoc(Boolean shouldUploadGeneratedDoc) { | ||
this.shouldUploadGeneratedDoc = shouldUploadGeneratedDoc; | ||
} | ||
|
||
public DocumentWorkflow getDocumentWorkflow() { | ||
return documentWorkflow; | ||
} | ||
|
||
public void setDocumentWorkflow(DocumentWorkflow documentWorkflow) { | ||
this.documentWorkflow = documentWorkflow; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.