Package | Description |
---|---|
com.hp.sdn.adm.auditlog |
Definitions of the services pertaining to the Audit Log system.
|
com.hp.sdn.adm.dao |
Definitions of data access services for persisting and retrieving
information applicable at the Administrator tier of the SDN Controller.
|
Modifier and Type | Method and Description |
---|---|
List<AuditLogEntry> |
AuditLogService.find(AuditLogFilter filter,
SortSpecification<AuditLogSortAttribute> sortSpec)
Returns a list of all AuditLogEntry objects present in the system,
based on the criteria exposed by the supplied filter, and sorted based
on the supplied sort specification.
|
Page<AuditLogEntry> |
AuditLogService.find(AuditLogFilter filter,
SortSpecification<AuditLogSortAttribute> sortSpec,
PageRequest pageRequest)
Returns a page of
AuditLogEntry objects present in the system, based on the page specification,
based on the criteria exposed by the supplied filter,
and sorted based on the supplied sort specification |
String |
AuditLogService.requestCSV(AuditLogFilter filter)
Request asynchronous production of an audit log csv file.
|
Modifier and Type | Method and Description |
---|---|
ReadQuery<Long> |
QueryService.getCountAuditLogEntryQuery(AuditLogFilter filter)
Creates a query to retrieve the count of AuditLogEntry objects based on
the supplied filter.
|
ReadQuery<Void> |
QueryService.getExportAuditLogQuery(AuditLogFilter filter,
File csvTarget)
Create a query to export the audit log data in a CSV format.
|
ReadQuery<List<AuditLogEntry>> |
QueryService.getFindAuditLogQuery(AuditLogFilter filter,
SortSpecification<AuditLogSortAttribute> sortSpecification)
Creates a query that will find AuditLogEntry objects based on the
supplied query criteria.
|
ReadQuery<Page<AuditLogEntry>> |
QueryService.getPageAuditLogQuery(AuditLogFilter filter,
SortSpecification<AuditLogSortAttribute> sortSpecification,
PageRequest pageRequest)
Creates a query that will produce a page of AuditLogEntry data based on
the supplied filter and sorting criteria.
|
WriteQuery<Long> |
QueryService.getTrimAuditLogQuery(AuditLogFilter filter)
Creates a write query to trim (delete) AuditLogEntry objects based on
the given filter.
|
Copyright © 2015. All Rights Reserved.