Class CertificateListResource


  • @RestController
    @RequestMapping("/publicapi")
    public class CertificateListResource
    extends Object
    REST controller for managing Certificate.
    • Constructor Detail

      • CertificateListResource

        public CertificateListResource()
    • Method Detail

      • getAllCertificates

        @GetMapping("/certificateList")
        public org.springframework.http.ResponseEntity<List<CertificateView>> getAllCertificates​(org.springframework.data.domain.Pageable pageable,
                                                                                                 javax.servlet.http.HttpServletRequest request)
        GET /certificates : get all the certificates.
        Parameters:
        pageable - the pagination information.
        Returns:
        the ResponseEntity with status 200 (OK) and the list of certificates in body.