1 16 17 package org.springframework.web.context; 18 19 import javax.servlet.ServletContext ; 20 21 import org.springframework.context.ApplicationContext; 22 23 44 public interface WebApplicationContext extends ApplicationContext { 45 46 54 String ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE = WebApplicationContext.class.getName() + ".ROOT"; 55 56 57 61 String SCOPE_REQUEST = "request"; 62 63 67 String SCOPE_SESSION = "session"; 68 69 73 String SCOPE_GLOBAL_SESSION = "globalSession"; 74 75 76 79 ServletContext getServletContext(); 80 81 } 82 | Popular Tags |