01: /*
02: * Copyright (c) 2002-2003 by OpenSymphony
03: * All rights reserved.
04: */
05: package com.opensymphony.webwork.util;
06:
07: import javax.servlet.ServletContext;
08:
09: /**
10: * For components that have a dependence on the Servlet context.
11: */
12: public interface ServletContextAware {
13:
14: public void setServletContext(ServletContext context);
15: }
|