-
Notifications
You must be signed in to change notification settings - Fork 142
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[GITFLOW]merging 'release-1.71.0' into 'master'
- Loading branch information
Showing
646 changed files
with
40,933 additions
and
17,192 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
11 changes: 11 additions & 0 deletions
11
sormas-api/src/main/java/de/symeda/sormas/api/audit/AuditLoggerFacade.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,11 @@ | ||
package de.symeda.sormas.api.audit; | ||
|
||
import javax.ejb.Remote; | ||
|
||
@Remote | ||
public interface AuditLoggerFacade { | ||
|
||
void logRestCall(String path, String method); | ||
void logFailedUiLogin(String caller, String method, String pathInfo); | ||
void logFailedRestLogin(String authorizationHeader, String method, String pathInfo); | ||
} |
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 |
---|---|---|
|
@@ -67,6 +67,7 @@ public class Constants { | |
"revoke", | ||
"reset", | ||
"enable", | ||
"disable"))); | ||
"disable", | ||
"log"))); | ||
|
||
} |
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
44 changes: 44 additions & 0 deletions
44
sormas-api/src/main/java/de/symeda/sormas/api/dashboard/DashboardCaseMeasureDto.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,44 @@ | ||
package de.symeda.sormas.api.dashboard; | ||
|
||
import java.io.Serializable; | ||
import java.math.BigDecimal; | ||
import java.util.Map; | ||
|
||
import de.symeda.sormas.api.infrastructure.district.DistrictDto; | ||
|
||
public class DashboardCaseMeasureDto implements Serializable { | ||
|
||
private static final long serialVersionUID = -5705128377788207658L; | ||
|
||
private Map<DistrictDto, BigDecimal> caseMeasurePerDistrict; | ||
private BigDecimal districtValuesLowerQuartile; | ||
private BigDecimal districtValuesMedianQuartile; | ||
private BigDecimal districtValuesUpperQuartile; | ||
|
||
public DashboardCaseMeasureDto( | ||
Map<DistrictDto, BigDecimal> caseMeasurePerDistrict, | ||
BigDecimal districtValuesLowerQuartile, | ||
BigDecimal districtValuesMedianQuartile, | ||
BigDecimal districtValuesUpperQuartile) { | ||
this.caseMeasurePerDistrict = caseMeasurePerDistrict; | ||
this.districtValuesLowerQuartile = districtValuesLowerQuartile; | ||
this.districtValuesMedianQuartile = districtValuesMedianQuartile; | ||
this.districtValuesUpperQuartile = districtValuesUpperQuartile; | ||
} | ||
|
||
public Map<DistrictDto, BigDecimal> getCaseMeasurePerDistrict() { | ||
return caseMeasurePerDistrict; | ||
} | ||
|
||
public BigDecimal getDistrictValuesLowerQuartile() { | ||
return districtValuesLowerQuartile; | ||
} | ||
|
||
public BigDecimal getDistrictValuesMedianQuartile() { | ||
return districtValuesMedianQuartile; | ||
} | ||
|
||
public BigDecimal getDistrictValuesUpperQuartile() { | ||
return districtValuesUpperQuartile; | ||
} | ||
} |
103 changes: 103 additions & 0 deletions
103
sormas-api/src/main/java/de/symeda/sormas/api/dashboard/DashboardContactFollowUpDto.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,103 @@ | ||
package de.symeda.sormas.api.dashboard; | ||
|
||
import java.io.Serializable; | ||
|
||
public class DashboardContactFollowUpDto implements Serializable { | ||
|
||
private static final long serialVersionUID = -5705128377788207650L; | ||
private int followUpContactsCount; | ||
private int cooperativeContactsCount; | ||
private int cooperativeContactsPercentage; | ||
private int uncooperativeContactsCount; | ||
private int uncooperativeContactsPercentage; | ||
private int unavailableContactsCount; | ||
private int unavailableContactsPercentage; | ||
private int neverVisitedContactsCount; | ||
private int notVisitedContactsPercentage; | ||
|
||
private int missedVisitsOneDay; | ||
private int missedVisitsTwoDays; | ||
private int missedVisitsThreeDays; | ||
private int missedVisitsGtThreeDays; | ||
|
||
public DashboardContactFollowUpDto( | ||
int followUpContactsCount, | ||
int cooperativeContactsCount, | ||
int cooperativeContactsPercentage, | ||
int uncooperativeContactsCount, | ||
int uncooperativeContactsPercentage, | ||
int unavailableContactsCount, | ||
int unavailableContactsPercentage, | ||
int neverVisitedContactsCount, | ||
int notVisitedContactsPercentage, | ||
int missedVisitsOneDay, | ||
int missedVisitsTwoDays, | ||
int missedVisitsThreeDays, | ||
int missedVisitsGtThreeDays) { | ||
this.followUpContactsCount = followUpContactsCount; | ||
this.cooperativeContactsCount = cooperativeContactsCount; | ||
this.cooperativeContactsPercentage = cooperativeContactsPercentage; | ||
this.uncooperativeContactsCount = uncooperativeContactsCount; | ||
this.uncooperativeContactsPercentage = uncooperativeContactsPercentage; | ||
this.unavailableContactsCount = unavailableContactsCount; | ||
this.unavailableContactsPercentage = unavailableContactsPercentage; | ||
this.neverVisitedContactsCount = neverVisitedContactsCount; | ||
this.notVisitedContactsPercentage = notVisitedContactsPercentage; | ||
this.missedVisitsOneDay = missedVisitsOneDay; | ||
this.missedVisitsTwoDays = missedVisitsTwoDays; | ||
this.missedVisitsThreeDays = missedVisitsThreeDays; | ||
this.missedVisitsGtThreeDays = missedVisitsGtThreeDays; | ||
} | ||
|
||
public int getFollowUpContactsCount() { | ||
return followUpContactsCount; | ||
} | ||
|
||
public int getCooperativeContactsCount() { | ||
return cooperativeContactsCount; | ||
} | ||
|
||
public int getCooperativeContactsPercentage() { | ||
return cooperativeContactsPercentage; | ||
} | ||
|
||
public int getUncooperativeContactsCount() { | ||
return uncooperativeContactsCount; | ||
} | ||
|
||
public int getUncooperativeContactsPercentage() { | ||
return uncooperativeContactsPercentage; | ||
} | ||
|
||
public int getUnavailableContactsCount() { | ||
return unavailableContactsCount; | ||
} | ||
|
||
public int getUnavailableContactsPercentage() { | ||
return unavailableContactsPercentage; | ||
} | ||
|
||
public int getNeverVisitedContactsCount() { | ||
return neverVisitedContactsCount; | ||
} | ||
|
||
public int getNotVisitedContactsPercentage() { | ||
return notVisitedContactsPercentage; | ||
} | ||
|
||
public int getMissedVisitsOneDay() { | ||
return missedVisitsOneDay; | ||
} | ||
|
||
public int getMissedVisitsTwoDays() { | ||
return missedVisitsTwoDays; | ||
} | ||
|
||
public int getMissedVisitsThreeDays() { | ||
return missedVisitsThreeDays; | ||
} | ||
|
||
public int getMissedVisitsGtThreeDays() { | ||
return missedVisitsGtThreeDays; | ||
} | ||
} |
Oops, something went wrong.