View Javadoc

1   package org.eclipse.jetty.webapp;
2   
3   public class AbstractConfiguration implements Configuration
4   {
5       public void preConfigure(WebAppContext context) throws Exception
6       {
7       }
8   
9       public void configure(WebAppContext context) throws Exception
10      {
11      }
12  
13      public void postConfigure(WebAppContext context) throws Exception
14      {
15      }
16  
17      public void deconfigure(WebAppContext context) throws Exception
18      {
19      }
20  
21      public void destroy(WebAppContext context) throws Exception
22      {
23      }
24  
25      public void cloneConfigure(WebAppContext template, WebAppContext context) throws Exception
26      {
27      }
28  }