Package | Description |
---|---|
org.springframework.cloud.dataflow.server.audit.repository |
Contains classes for the Audit related JPA repository.
|
org.springframework.cloud.dataflow.server.audit.service |
Contains classes for the Audit Service.
|
org.springframework.cloud.dataflow.server.controller |
Spring Cloud Data Flow Server Controllers.
|
Modifier and Type | Method and Description |
---|---|
<S extends AuditRecord> |
AuditRecordRepository.save(S s) |
Modifier and Type | Method and Description |
---|---|
List<AuditRecord> |
AuditRecordRepository.findAll() |
org.springframework.data.domain.Page<AuditRecord> |
AuditRecordRepository.findByAuditActionIn(AuditActionType[] actions,
org.springframework.data.domain.Pageable page) |
org.springframework.data.domain.Page<AuditRecord> |
AuditRecordRepository.findByAuditOperationIn(AuditOperationType[] operations,
org.springframework.data.domain.Pageable pageable) |
org.springframework.data.domain.Page<AuditRecord> |
AuditRecordRepository.findByAuditOperationInAndAuditActionIn(AuditOperationType[] operations,
AuditActionType[] actions,
org.springframework.data.domain.Pageable pageable) |
Modifier and Type | Method and Description |
---|---|
AuditRecord |
DefaultAuditRecordService.findOne(Long id) |
AuditRecord |
AuditRecordService.findOne(Long id)
Find a single
AuditRecord by providing a mandatory id. |
AuditRecord |
DefaultAuditRecordService.populateAndSaveAuditRecord(AuditOperationType auditOperationType,
AuditActionType auditActionType,
String correlationId,
String data) |
AuditRecord |
AuditRecordService.populateAndSaveAuditRecord(AuditOperationType auditOperationType,
AuditActionType auditActionType,
String correlationId,
String data)
With a mandatory set of parameters, this method will create a
AuditRecord
instance and persist it to the underlying data store, e.g. |
AuditRecord |
DefaultAuditRecordService.populateAndSaveAuditRecordUsingMapData(AuditOperationType auditOperationType,
AuditActionType auditActionType,
String correlationId,
Map<String,Object> data) |
AuditRecord |
AuditRecordService.populateAndSaveAuditRecordUsingMapData(AuditOperationType auditOperationType,
AuditActionType auditActionType,
String correlationId,
Map<String,Object> data)
Similar to
AuditRecordService.populateAndSaveAuditRecord(AuditOperationType, AuditActionType, String, String)
but instead of a String users can provide a Map as the Audit Data parameter,
which will be persisted as a JSON a structure. |
Modifier and Type | Method and Description |
---|---|
org.springframework.data.domain.Page<AuditRecord> |
DefaultAuditRecordService.findAuditRecordByAuditOperationTypeAndAuditActionType(org.springframework.data.domain.Pageable pageable,
AuditActionType[] actions,
AuditOperationType[] operations) |
org.springframework.data.domain.Page<AuditRecord> |
AuditRecordService.findAuditRecordByAuditOperationTypeAndAuditActionType(org.springframework.data.domain.Pageable pageable,
AuditActionType[] actions,
AuditOperationType[] operations)
Allows for querying of
AuditRecord s. |
Modifier and Type | Method and Description |
---|---|
org.springframework.hateoas.PagedResources<AuditRecordResource> |
AuditRecordController.list(org.springframework.data.domain.Pageable pageable,
AuditActionType[] actions,
AuditOperationType[] operations,
org.springframework.data.web.PagedResourcesAssembler<AuditRecord> assembler)
Return a page-able list of
AuditRecordResource s. |
Copyright © 2018 Pivotal Software, Inc.. All rights reserved.