1 64 65 package com.jcorporate.expresso.core.servlet; 66 67 72 73 import com.jcorporate.expresso.core.db.DBException; 74 import com.jcorporate.expresso.core.misc.ConfigManager; 75 76 import javax.servlet.ServletConfig ; 77 import javax.servlet.ServletException ; 78 79 80 99 public abstract class InitServlet 100 extends DBServlet { 101 104 public InitServlet() { 105 super(); 106 } 107 108 118 public abstract void loadLists() 119 throws DBException; 120 121 122 129 public void init(ServletConfig conf) 130 throws ServletException { 131 super.init(conf); 132 } 133 134 135 139 public void destroy() { 140 super.destroy(); 141 ConfigManager.destroy(); 142 } 143 } 144 145 | Popular Tags |