Class AcmeAccountListResource


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

      • getAllAcmeAccounts

        @GetMapping("/acmeAccountList")
        @PreAuthorize("hasRole(\"ROLE_ADMIN\")")
        public org.springframework.http.ResponseEntity<List<AcmeAccountView>> getAllAcmeAccounts​(org.springframework.data.domain.Pageable pageable,
                                                                                                 javax.servlet.http.HttpServletRequest request)
        GET /acmeAccountList : get all the ACME accounts.
        Parameters:
        pageable - the pagination information.
        Returns:
        the ResponseEntity with status 200 (OK) and the list of ACME account in body.