public abstract class AuditModule
extends com.sun.enterprise.security.BaseAuditModule
Note that the methods inherited from BaseAuditModule are repeated here so developers see the whole API available to their custom AuditModule implementations by looking just at this one abstract class.
| Constructor and Description |
|---|
AuditModule() |
| Modifier and Type | Method and Description |
|---|---|
void |
ejbAsWebServiceInvocation(String endpoint,
boolean success)
Invoked during validation of the web service request
|
void |
ejbInvocation(String user,
String ejb,
String method,
boolean success)
Invoked post ejb authorization request.
|
void |
webInvocation(String user,
javax.servlet.http.HttpServletRequest req,
String type,
boolean success)
Invoked post web authorization request.
|
void |
webServiceInvocation(String uri,
String endpoint,
boolean success)
Invoked during validation of the web service request
|
public void webInvocation(String user, javax.servlet.http.HttpServletRequest req, String type, boolean success)
user - the username for whom the authorization was performedreq - the HttpRequest object for the web requesttype - the permission type, hasUserDataPermission
or hasResourcePermission.success - the status of the web authorization requestpublic void ejbInvocation(String user, String ejb, String method, boolean success)
user - the username for whom the authorization was performedejb - the ejb name for which this authorization was performedmethod - the method name for which this authorization was performedsuccess - the status of the ejb authorization requestpublic void webServiceInvocation(String uri, String endpoint, boolean success)
uri - The URL representation of the web service endpointendpoint - The name of the endpoint representationsuccess - the status of the web service request validationpublic void ejbAsWebServiceInvocation(String endpoint, boolean success)
endpoint - The representation of the web service endpointsuccess - the status of the web service request validationCopyright © 2014. All rights reserved.