|
WebLogic Server 6.1 Code Examples, BEA Systems, Inc. | |||||
See:
Description
| Class Summary | |
| LogAuditProvider | Simple implementation of the audit SPI. |
The weblogic.security.audit package provides a way for you to audit security events that occur in your WebLogic Server environment. The audit example provides an implementation of the AuditProvider interface. The implementation, LogAuditProvider, displays all security events it receives on the screen. It also defines filter methods for each security event type which it calls to decide whether to log a particular event. In the audit code example all security events are logged. If you extend the audit code example, you can override the filter methods that that select the events you want to log.
Perform the following steps in order to build and run the audit code example:
ant
javac -d %SERVER_CLASSES% LogAuditProvider.java
Read more about audit providers and security in Programming WebLogic Security and Managing Security.
|
Documentation is available at http://e-docs.bea.com/wls/docs61 |
|||||