KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > userguide > loggingmodule > LoggingModule


1 package userguide.loggingmodule;
2
3 import org.apache.axis2.engine.AxisConfiguration;
4 import org.apache.axis2.engine.AxisFault;
5 import org.apache.axis2.modules.Module;
6
7 /**
8  * Created by IntelliJ IDEA.
9  * Author : Deepal Jayasinghe
10  * Date: Apr 19, 2005
11  * Time: 3:16:14 PM
12  */

13 public class LoggingModule implements Module{
14
15
16     // initialize the module
17
public void init(AxisConfiguration axisSystem) throws AxisFault {
18         //To change body of implemented methods use File | Settings | File Templates.
19
}
20
21     // shutdown the module
22
public void shutdown(AxisConfiguration axisSystem) throws AxisFault {
23         //To change body of implemented methods use File | Settings | File Templates.
24
}
25 }
26
Popular Tags