Pull request #651: RED-6265 - Bulk dossier stats endpoint does not return dossier stats of dossiers, for which the current dossier does not have access permissions

Merge in RED/persistence-service from bugfix/RED-6265-3.6.0 to release/1.363.x

* commit '08965675999b4309147a216d362c433d4c08381b':
  RED-6265 - Bulk dossier stats endpoint does not return dossier stats of dossiers, for which the current dossier does not have access permissions
This commit is contained in:
Corina Olariu 2023-03-30 15:47:44 +02:00
commit 4051d6b3e1
2 changed files with 0 additions and 4 deletions

View File

@ -19,12 +19,10 @@ public interface DossierStatsResource {
String DOSSIER_ID_PATH_PARAM = "/{" + DOSSIER_ID_PARAM + "}";
@Deprecated
@GetMapping(value = REST_PATH + DOSSIER_ID_PATH_PARAM, produces = MediaType.APPLICATION_JSON_VALUE)
DossierStats getDossierStats(@PathVariable(DOSSIER_ID_PARAM) String dossierId);
@Deprecated
@PostMapping(value = REST_PATH, produces = MediaType.APPLICATION_JSON_VALUE)
List<DossierStats> getDossierStats(@RequestBody Set<String> dossierIds);

View File

@ -19,7 +19,6 @@ public class DossierStatsController implements DossierStatsResource {
private final DossierStatsService dossierStatsService;
@Deprecated
@Override
public DossierStats getDossierStats(String dossierId) {
@ -27,7 +26,6 @@ public class DossierStatsController implements DossierStatsResource {
}
@Deprecated
@Override
public List<DossierStats> getDossierStats(Set<String> dossierIds) {