|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface ConfigurablePortletApplicationContext
Interface to be implemented by configurable portlet application contexts.
Supported by FrameworkPortlet
.
Note: The setters of this interface need to be called before an
invocation of the ConfigurableApplicationContext.refresh()
method inherited from
ConfigurableApplicationContext
.
They do not cause an initialization of the context on their own.
ConfigurableApplicationContext.refresh()
,
ContextLoader.createWebApplicationContext(javax.servlet.ServletContext, org.springframework.context.ApplicationContext)
,
FrameworkPortlet.createPortletApplicationContext(org.springframework.context.ApplicationContext)
,
ConfigurableWebApplicationContext
Field Summary |
---|
Fields inherited from interface org.springframework.web.context.WebApplicationContext |
---|
ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE, SCOPE_GLOBAL_SESSION, SCOPE_REQUEST, SCOPE_SESSION |
Fields inherited from interface org.springframework.context.ConfigurableApplicationContext |
---|
CONFIG_LOCATION_DELIMITERS, LOAD_TIME_WEAVER_BEAN_NAME |
Fields inherited from interface org.springframework.beans.factory.BeanFactory |
---|
FACTORY_BEAN_PREFIX |
Fields inherited from interface org.springframework.core.io.support.ResourcePatternResolver |
---|
CLASSPATH_ALL_URL_PREFIX |
Fields inherited from interface org.springframework.core.io.ResourceLoader |
---|
CLASSPATH_URL_PREFIX |
Method Summary | |
---|---|
String[] |
getConfigLocations()
Return the config locations for this web application context, or null if none specified. |
String |
getNamespace()
Return the namespace for this web application context, if any. |
javax.portlet.PortletConfig |
getPortletConfig()
Return the PortletConfig for this portlet application context, if any. |
javax.portlet.PortletContext |
getPortletContext()
Return the standard Portlet API PortletContext for this application. |
void |
setConfigLocation(String configLocation)
Set the config locations for this portlet application context in init-param style, i.e. with distinct locations separated by commas, semicolons or whitespace. |
void |
setConfigLocations(String[] configLocations)
Set the config locations for this portlet application context. |
void |
setNamespace(String namespace)
Set the namespace for this portlet application context, to be used for building a default context config location. |
void |
setPortletConfig(javax.portlet.PortletConfig portletConfig)
Set the PortletConfig for this portlet application context. |
void |
setPortletContext(javax.portlet.PortletContext portletContext)
Set the PortletContext for this portlet application context. |
Methods inherited from interface org.springframework.web.context.WebApplicationContext |
---|
getServletContext |
Methods inherited from interface org.springframework.context.ConfigurableApplicationContext |
---|
addApplicationListener, addBeanFactoryPostProcessor, close, getBeanFactory, isActive, refresh, registerShutdownHook, setParent |
Methods inherited from interface org.springframework.context.ApplicationContext |
---|
getAutowireCapableBeanFactory, getDisplayName, getId, getParent, getStartupDate |
Methods inherited from interface org.springframework.beans.factory.ListableBeanFactory |
---|
containsBeanDefinition, getBeanDefinitionCount, getBeanDefinitionNames, getBeanNamesForType, getBeanNamesForType, getBeansOfType, getBeansOfType |
Methods inherited from interface org.springframework.beans.factory.HierarchicalBeanFactory |
---|
containsLocalBean, getParentBeanFactory |
Methods inherited from interface org.springframework.beans.factory.BeanFactory |
---|
containsBean, getAliases, getBean, getBean, getBean, getType, isPrototype, isSingleton, isTypeMatch |
Methods inherited from interface org.springframework.context.MessageSource |
---|
getMessage, getMessage, getMessage |
Methods inherited from interface org.springframework.context.ApplicationEventPublisher |
---|
publishEvent |
Methods inherited from interface org.springframework.core.io.support.ResourcePatternResolver |
---|
getResources |
Methods inherited from interface org.springframework.core.io.ResourceLoader |
---|
getClassLoader, getResource |
Methods inherited from interface org.springframework.context.Lifecycle |
---|
isRunning, start, stop |
Method Detail |
---|
void setPortletContext(javax.portlet.PortletContext portletContext)
Does not cause an initialization of the context: refresh needs to be called after the setting of all configuration properties.
ConfigurableApplicationContext.refresh()
javax.portlet.PortletContext getPortletContext()
void setPortletConfig(javax.portlet.PortletConfig portletConfig)
ConfigurableApplicationContext.refresh()
javax.portlet.PortletConfig getPortletConfig()
void setNamespace(String namespace)
String getNamespace()
void setConfigLocation(String configLocation)
If not set, the implementation is supposed to use a default for the given namespace.
void setConfigLocations(String[] configLocations)
If not set, the implementation is supposed to use a default for the given namespace.
String[] getConfigLocations()
null
if none specified.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |