1 23 24 29 30 package com.sun.appserv.security; 31 32 import java.util.Properties ; 33 import javax.servlet.http.HttpServletRequest ; 34 40 public abstract class AuditModule { 41 Properties props = null; 42 49 public void init(Properties props) { 50 this.props = props; 51 } 52 53 59 public void authentication(String user, String realm, boolean success) { 60 } 61 62 70 public void webInvocation(String user, HttpServletRequest req, 71 String type, boolean success) { 72 } 73 80 public void ejbInvocation(String user, String ejb, String method, boolean success) { 81 } 82 83 89 public void webServiceInvocation(String uri, String endpoint, boolean success) { 90 } 91 92 97 public void ejbAsWebServiceInvocation(String endpoint, boolean success) { 98 } 99 100 103 public void serverStarted() { 104 } 105 106 109 public void serverShutdown() { 110 } 111 112 } 113 | Popular Tags |