Interface CatalogueProjectFeignClient


@FeignClient(name="${feign.atp.catalogue.name}", url="${feign.atp.catalogue.url}", path="${feign.atp.catalogue.route}", configuration=org.qubership.atp.auth.springbootstarter.config.FeignConfiguration.class) public interface CatalogueProjectFeignClient
  • Method Summary

    Modifier and Type
    Method
    Description
    org.springframework.http.ResponseEntity<org.springframework.core.io.Resource>
     
    org.springframework.http.ResponseEntity<CertificateDto>
     
  • Method Details

    • getCertificate

      @RequestMapping(method=GET, value="/catalog/api/v1/projects/certificate/{uuid}", produces="application/json") org.springframework.http.ResponseEntity<CertificateDto> getCertificate(@PathVariable("uuid") UUID uuid)
    • downloadFile

      @RequestMapping(method=GET, value="/catalog/api/v1/projects/downloadFile/{fileId}", produces="application/octet-stream") org.springframework.http.ResponseEntity<org.springframework.core.io.Resource> downloadFile(@PathVariable("fileId") String fileId)