Package de.trustable.ca3s.core.web.rest
Class CSRListResource
- java.lang.Object
-
- de.trustable.ca3s.core.web.rest.CSRListResource
-
-
Constructor Summary
Constructors Constructor Description CSRListResource()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.springframework.http.ResponseEntity<List<CSRView>>getAllCertificates(org.springframework.data.domain.Pageable pageable, javax.servlet.http.HttpServletRequest request)GET /csrLisr: get all the csrs.
-
-
-
Method Detail
-
getAllCertificates
@GetMapping("/csrList") public org.springframework.http.ResponseEntity<List<CSRView>> getAllCertificates(org.springframework.data.domain.Pageable pageable, javax.servlet.http.HttpServletRequest request)GET /csrLisr: get all the csrs.- Parameters:
pageable- the pagination information.- Returns:
- the
ResponseEntitywith status200 (OK)and the list of certificates in body.
-
-