1 18 package org.apache.beehive.netui.pageflow; 19 20 import org.apache.beehive.netui.util.logging.Logger; 21 22 import javax.servlet.ServletConfig ; 23 import javax.servlet.ServletException ; 24 25 26 36 public class DynamicSubappActionServlet extends PageFlowActionServlet 37 { 38 private static final Logger _log = Logger.getInstance( DynamicSubappActionServlet.class ); 39 40 public void init() throws ServletException 41 { 42 super.init(); 43 44 if ( _log.isWarnEnabled() ) 45 { 46 _log.warn( DynamicSubappActionServlet.class.getName() + " is registered as the action Servlet. " 47 + "This class is deprecated; use " + PageFlowActionServlet.class.getName() + " instead." ); 48 } 49 } 50 } 51 | Popular Tags |