Class CertificateViewResource


  • @RestController
    @RequestMapping("/api")
    public class CertificateViewResource
    extends Object
    REST controller for reading Certificate using the convenient CertificateView object. Just read-only access to this resource.
    • Method Detail

      • getCertificate

        @GetMapping("/certificateViews/{id}")
        public org.springframework.http.ResponseEntity<CertificateView> getCertificate​(@PathVariable
                                                                                       Long id)
        GET /certificates/:id : get the "id" certificate.
        Parameters:
        id - the id of the certificate to retrieve.
        Returns:
        the ResponseEntity with status 200 (OK) and with body the certificate, or with status 404 (Not Found).