Uses of Class
org.apache.tomcat.core.TomcatException

Uses of TomcatException in org.apache.tomcat.core
 

Methods in org.apache.tomcat.core that throw TomcatException
protected  void ServletWrapper.doDestroy()
           
 void ContextManager.init()
          Init() is called after the context manager is set up and configured.
 void ContextManager.shutdown()
          Will shutdown all contexts
 void ContextManager.initContext(Context ctx)
          Initializes this context to be able to accept requests.
 void ContextManager.shutdownContext(Context ctx)
          Stop the context and release all resources.
 void ContextManager.addContext(Context ctx)
          Adds a new Context to the set managed by this ContextManager.
 void ContextManager.removeContext(Context context)
          Shut down and removes a context from service
 void ContextManager.addContainer(Container container)
          Notify interceptors that a new container was added.
 void ContextManager.removeContainer(Container container)
          Notify interceptors that a container was removed.
 int ContextManager.getNoteId(int noteType, java.lang.String name)
          Create a new note id.
 void ContextManager.removeContext(java.lang.String name)
          Deprecated. Use removeContext( Context ).
 void ContextManager.doPreServletInit(Context ctx, ServletWrapper sw)
           
 void ContextManager.doPostServletInit(Context ctx, ServletWrapper sw)
           
 void ContextManager.doPreServletDestroy(Context ctx, ServletWrapper sw)
           
 void ContextManager.doPostServletDestroy(Context ctx, ServletWrapper sw)
           
 void ContextInterceptor.engineInit(ContextManager cm)
          Called when the ContextManger is started.
 void ContextInterceptor.engineShutdown(ContextManager cm)
          Called before the ContextManager is stoped.
 void ContextInterceptor.addContext(ContextManager cm, Context ctx)
          Called when a context is added to a CM.
 void ContextInterceptor.contextInit(Context ctx)
          Notify when a context is initialized.
 void ContextInterceptor.reload(Request req, Context ctx)
          Reload notification - called whenever a reload is done.
 void ContextInterceptor.contextShutdown(Context ctx)
          Called when a context is stoped, before removeContext.
 void ContextInterceptor.removeContext(ContextManager cm, Context ctx)
          Called when a context is removed from a CM.
 void ContextInterceptor.addContainer(Container container)
          A new location was added to the server.
 void ContextInterceptor.removeContainer(Container container)
          A rule was removed, update the internal strucures.
 void ContextInterceptor.preServletInit(Context ctx, ServletWrapper sw)
          Servlet Init notification.
 void ContextInterceptor.postServletInit(Context ctx, ServletWrapper sw)
           
 void ContextInterceptor.preServletDestroy(Context ctx, ServletWrapper sw)
          Servlet Destroy notification
 void ContextInterceptor.postServletDestroy(Context ctx, ServletWrapper sw)
           
 void BaseInterceptor.contextInit(Context ctx)
           
 void BaseInterceptor.contextShutdown(Context ctx)
           
 void BaseInterceptor.addContainer(Container container)
           
 void BaseInterceptor.removeContainer(Container container)
           
 void BaseInterceptor.addSecurityConstraint(Context ctx, java.lang.String path, Container ct)
           
 void BaseInterceptor.engineInit(ContextManager cm)
          Called when the ContextManger is started
 void BaseInterceptor.engineShutdown(ContextManager cm)
          Called before the ContextManager is stoped.
 void BaseInterceptor.addContext(ContextManager cm, Context ctx)
          Called when a context is added to a CM
 void BaseInterceptor.removeContext(ContextManager cm, Context ctx)
          Called when a context is removed from a CM
 void BaseInterceptor.reload(Request req, Context ctx)
           
 void BaseInterceptor.preServletInit(Context ctx, ServletWrapper sw)
          Servlet Init notification
 void BaseInterceptor.postServletInit(Context ctx, ServletWrapper sw)
           
 void BaseInterceptor.preServletDestroy(Context ctx, ServletWrapper sw)
          Servlet Destroy notification
 void BaseInterceptor.postServletDestroy(Context ctx, ServletWrapper sw)
           
 void Context.addServletMapping(java.lang.String path, java.lang.String servletName)
          Maps a named servlet to a particular path or extension.
 void Context.addSecurityConstraint(java.lang.String[] path, java.lang.String[] methods, java.lang.String[] roles, java.lang.String transport)
          Will add a new security constraint: For all paths: if( match(path) && match(method) && match( transport ) ) then require("roles") This is equivalent with adding a Container with the path, method and transport.
 void Context.removeServletByName(java.lang.String servletName)
          Remove the servlet with a specific name
 void Context.addServlet(ServletWrapper wrapper)
          Add a servlet with the given name to the container.
 ServletWrapper Context.addServlet(java.lang.String name, java.lang.String classN)
           
 



Copyright © 2000 Apache Software Foundation. All Rights Reserved.