Class CSRListResource


  • @RestController
    @RequestMapping("/api")
    public class CSRListResource
    extends Object
    REST controller for managing CSRView.
    • Method Detail

      • getAllCsrs

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

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