1 16 17 package org.springframework.web.portlet.context; 18 19 import javax.portlet.PortletConfig; 20 import javax.portlet.PortletContext; 21 22 import org.springframework.context.ConfigurableApplicationContext; 23 import org.springframework.web.context.WebApplicationContext; 24 25 43 public interface ConfigurablePortletApplicationContext 44 extends WebApplicationContext, ConfigurableApplicationContext { 45 46 51 String CONFIG_LOCATION_DELIMITERS = ",; \t\n"; 52 53 54 60 void setPortletContext(PortletContext portletContext); 61 62 65 PortletContext getPortletContext(); 66 67 71 void setPortletConfig(PortletConfig portletConfig); 72 73 76 PortletConfig getPortletConfig(); 77 78 82 void setNamespace(String namespace); 83 84 87 String getNamespace(); 88 89 94 void setConfigLocations(String [] configLocations); 95 96 100 String [] getConfigLocations(); 101 102 } 103 | Popular Tags |