Reference Guide

Table Of Contents
Figure 62 Alerts View
Auditing with Logs
In order to illustrate how audit logs may be posted using the AuditLogService published by the
controller, SwitchManager of the sample application will post an audit log when a device is
added. See Audit Logging on page 19 to get more information.
The AuditLogService dependency must be added as any other service to consume; see Consuming
Services with OSGi Declarative Services on page 166. The following listings illustrates an extract
of a modified SwitchManager that posts audit logs. It assumes you've implemented
SwitchComponent.java shown below.
SwitchManager.java Posting Audit Logs:
package com.hp.hm.impl;
import com.hp.sdn.adm.auditlog.AuditLogService;
import org.apache.felix.scr.annotations.Reference;
import org.apache.felix.scr.annotations.ReferenceCardinality;
import org.apache.felix.scr.annotations.ReferencePolicy;
...
public class SwitchManager implements SwitchService {
...
private AuditLogService auditLogService;
...
public void setAuditLogService(AuditLogService auditLogService) {
this.auditLogService = auditLogService;
}
@Override
215