Oracle Fusion Middleware Java API Reference for Oracle Extension SDK Reference
11g Release 1 (11.1.1.7.0)

E13403-08

oracle.jdeveloper.audit.service
Interface AuditListener

All Superinterfaces:
java.util.EventListener
All Known Subinterfaces:
AuditModel
All Known Implementing Classes:
AbstractAuditModel, DefaultAuditModel

public interface AuditListener
extends java.util.EventListener

A listener for Auditor events. AuditListener methods are invoked on the audit thread.


Method Summary
 void auditorCleared(Auditor auditor)
          Reports an auditor cleared event.
 void auditStarted(Auditor auditor, java.util.List<Metric> columns, java.util.List<Location> locations, Location root, java.lang.Class type)
          Reports an Auditor audit started event.
 void auditStopped(Auditor auditor, boolean cancelled)
          Reports an Auditor audit stopped event.
 void issueReported(Auditor auditor, Violation issue, int transformMask)
          Reports an Auditor violation reported event.
 void locationEntered(Auditor auditor, Location location, java.lang.Class type)
          Reports an Auditor location entered event.
 void locationExited(Auditor auditor, Location location)
          Reports an Auditor location exited event.
 void modelEntered(Auditor auditor, ModelAdapter model)
          Reports an Auditor model entered event.
 void modelExited(Auditor auditor, ModelAdapter model)
          Reports an Auditor model exited event.
 void phaseStarted(Auditor auditor, java.lang.String phaseName)
          Reports an Auditor phase started event.
 void valueReported(Auditor auditor, Location location, Metric metric, java.lang.Object newValue)
          Reports an Auditor value reported event.
 

Method Detail

auditorCleared

void auditorCleared(Auditor auditor)
Reports an auditor cleared event.


auditStarted

void auditStarted(Auditor auditor,
                  java.util.List<Metric> columns,
                  java.util.List<Location> locations,
                  Location root,
                  java.lang.Class type)
Reports an Auditor audit started event.


phaseStarted

void phaseStarted(Auditor auditor,
                  java.lang.String phaseName)
Reports an Auditor phase started event.


auditStopped

void auditStopped(Auditor auditor,
                  boolean cancelled)
Reports an Auditor audit stopped event.


modelEntered

void modelEntered(Auditor auditor,
                  ModelAdapter model)
Reports an Auditor model entered event.


modelExited

void modelExited(Auditor auditor,
                 ModelAdapter model)
Reports an Auditor model exited event.


locationEntered

void locationEntered(Auditor auditor,
                     Location location,
                     java.lang.Class type)
Reports an Auditor location entered event.


locationExited

void locationExited(Auditor auditor,
                    Location location)
Reports an Auditor location exited event.


issueReported

void issueReported(Auditor auditor,
                   Violation issue,
                   int transformMask)
Reports an Auditor violation reported event.


valueReported

void valueReported(Auditor auditor,
                   Location location,
                   Metric metric,
                   java.lang.Object newValue)
Reports an Auditor value reported event.


Oracle Fusion Middleware Java API Reference for Oracle Extension SDK Reference
11g Release 1 (11.1.1.7.0)

E13403-08

Copyright © 1997, 2013, Oracle. All rights reserved.