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

- remove deprecated
This commit is contained in:
devplant 2023-03-30 16:12:54 +03:00
parent 9930430bcd
commit 0896567599
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) {