Auditorpublic interface Auditor Defines interface of classes which implement audit functionality.
An Auditor class can be registered with a Context and
will receive notification of all auditable events processed by the
Authenticator of that context.
IASRI 4823322 |
Methods Summary |
---|
public void | authentication(java.lang.String user, java.lang.String realm, boolean success)Notify auditor of an authentication event.
This method will get invoked on every login attempt whether
it was approved or denied by the authentication infrastructure.
| public void | webInvocation(HttpRequest req, boolean success)Notify auditor of a servlet container invocation.
This method will get invoked on every request whether it
was permitted or not by the authorization infrastructure.
|
|