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.
|
com.hp.sdn.adm.json |
Implementations of Core Services JSON factory and associated codecs.
|
com.hp.sdn.api |
Definitions of services for driving outbound external communications for
interacting with peers and integrating with other external applications,
e.g.
|
com.hp.sdn.auditlog |
Definitions of the domain model pertaining to the Audit Logs.
|
Modifier and Type | Method and Description |
---|---|
AuditLogEntry |
AuditLogService.post(String user,
String origin,
String activity,
String description)
Creates a new AuditLogEntry based on the supplied parameters.
|
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 |
Modifier and Type | Method and Description |
---|---|
void |
AuditLogService.importAuditLogEntry(AuditLogEntry entry)
Add an audit log entry to this system.
|
Modifier and Type | Method and Description |
---|---|
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<AuditLogEntry> |
QueryService.getGetAuditLogQuery(Id<AuditLogEntry,UUID> id)
Creates a query that gets an audit log by its id.
|
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.
|
Modifier and Type | Method and Description |
---|---|
WriteQuery<Boolean> |
QueryService.getAddAuditLogEntryQuery(AuditLogEntry log)
Creates a write query to add a new AuditLogEntry to the system.
|
Modifier and Type | Method and Description |
---|---|
WriteQuery<Long> |
QueryService.getAddAuditLogEntryListQuery(List<AuditLogEntry> auditLogs)
Creates a write query to add a list of AuditLogEntry objects to the
persistence data store.
|
ReadQuery<AuditLogEntry> |
QueryService.getGetAuditLogQuery(Id<AuditLogEntry,UUID> id)
Creates a query that gets an audit log by its id.
|
Modifier and Type | Method and Description |
---|---|
AuditLogEntry |
AuditLogCodec.decode(com.fasterxml.jackson.databind.node.ObjectNode node) |
Modifier and Type | Method and Description |
---|---|
com.fasterxml.jackson.databind.node.ObjectNode |
AuditLogCodec.encode(AuditLogEntry auditLogEntry) |
Modifier and Type | Method and Description |
---|---|
Pair<List<AuditLogEntry>,DataSize> |
AuditLogTransferService.get(SystemInformation self,
SystemInformation system,
Date from)
Requests audit logs from the given system.
|
Modifier and Type | Method and Description |
---|---|
void |
AuditLogTransferService.send(AuditLogEntry entry)
Transfer an audit log entry across the team.
|
Constructor and Description |
---|
AuditLogEntry(Id<AuditLogEntry,UUID> id,
Id<SystemInformation,UUID> sysId,
String user,
String origin,
Date timestamp,
String activity,
String description)
Constructs an Audit Log Entry using the supplied unique identification
and system identification.
|
Copyright © 2015. All Rights Reserved.