KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > opensymphony > webwork > util > ServletContextAware


1 /*
2  * Copyright (c) 2002-2003 by OpenSymphony
3  * All rights reserved.
4  */

5 package com.opensymphony.webwork.util;
6
7 import javax.servlet.ServletContext JavaDoc;
8
9
10 /**
11  * For components that have a dependence on the Servlet context.
12  */

13 public interface ServletContextAware {
14     //~ Methods ////////////////////////////////////////////////////////////////
15

16     public void setServletContext(ServletContext JavaDoc context);
17 }
18
Popular Tags