1 16 17 package org.springframework.web.context; 18 19 import javax.servlet.ServletConfig ; 20 import javax.servlet.ServletContext ; 21 22 import org.springframework.context.ConfigurableApplicationContext; 23 24 40 public interface ConfigurableWebApplicationContext extends WebApplicationContext, ConfigurableApplicationContext { 41 42 48 String CONFIG_LOCATION_DELIMITERS = ",; \t\n"; 49 50 51 57 void setServletContext(ServletContext servletContext); 58 59 64 void setServletConfig(ServletConfig servletConfig); 65 66 69 ServletConfig getServletConfig(); 70 71 76 void setNamespace(String namespace); 77 78 81 String getNamespace(); 82 83 88 void setConfigLocations(String [] configLocations); 89 90 94 String [] getConfigLocations(); 95 96 } 97 | Popular Tags |