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 Jayasinghe10 * Date: Apr 19, 200511 * Time: 3:16:14 PM12 */13 public class LoggingModule implements Module{14 15 16 // initialize the module17 public void init(AxisConfiguration axisSystem) throws AxisFault {18 //To change body of implemented methods use File | Settings | File Templates.19 }20 21 // shutdown the module22 public void shutdown(AxisConfiguration axisSystem) throws AxisFault {23 //To change body of implemented methods use File | Settings | File Templates.24 }25 }26