DDI resource - remove dupplicated annotations (MgmtDownloadArtifactRest) (#2064)

Signed-off-by: Avgustin Marinov <Avgustin.Marinov@bosch.com>
This commit is contained in:
Avgustin Marinov
2024-11-17 18:32:01 +02:00
committed by GitHub
parent a4cb8f71da
commit 75ea430101
2 changed files with 4 additions and 7 deletions

View File

@@ -34,6 +34,7 @@ public interface MgmtDownloadArtifactRestApi {
*/
@GetMapping(value = MgmtRestConstants.SOFTWAREMODULE_V1_REQUEST_MAPPING + "/{softwareModuleId}/artifacts/{artifactId}/download")
@ResponseBody
ResponseEntity<InputStream> downloadArtifact(@PathVariable("softwareModuleId") Long softwareModuleId,
ResponseEntity<InputStream> downloadArtifact(
@PathVariable("softwareModuleId") Long softwareModuleId,
@PathVariable("artifactId") Long artifactId);
}