01: /*
02: * Copyright 1999-2001,2004 The Apache Software Foundation.
03: *
04: * Licensed under the Apache License, Version 2.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.apache.org/licenses/LICENSE-2.0
09: *
10: * Unless required by applicable law or agreed to in writing, software
11: * distributed under the License is distributed on an "AS IS" BASIS,
12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13: * See the License for the specific language governing permissions and
14: * limitations under the License.
15: */
16:
17: package org.apache.catalina;
18:
19: /**
20: * A <b>ContainerServlet</b> is a servlet that has access to Catalina
21: * internal functionality, and is loaded from the Catalina class loader
22: * instead of the web application class loader. The property setter
23: * methods must be called by the container whenever a new instance of
24: * this servlet is put into service.
25: *
26: * @author Craig R. McClanahan
27: * @version $Revision: 1.2 $ $Date: 2004/02/27 14:58:38 $
28: */
29:
30: public interface ContainerServlet {
31:
32: // ------------------------------------------------------------- Properties
33:
34: /**
35: * Return the Wrapper with which this Servlet is associated.
36: */
37: public Wrapper getWrapper();
38:
39: /**
40: * Set the Wrapper with which this Servlet is associated.
41: *
42: * @param wrapper The new associated Wrapper
43: */
44: public void setWrapper(Wrapper wrapper);
45:
46: }
|