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