|
WebLogic Server 6.0 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, writes all security events it receives to the WebLogic Server log file. 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:
javac -d %SERVER_CLASSES% LogAuditProvider.java
You can identify the messages LogAuditProvider writes in the WebLogic Server by searching for the string Audit.
Read more about audit providers and security in Programming WebLogic Security and Managing Security.
|
Documentation is available at http://e-docs.bea.com/wls/docs60 |