A C D F G I L M N O P R S

A

addRequiredProperty(String) - Method in class org.jasig.springframework.web.portlet.filter.GenericPortletFilterBean
Subclasses can invoke this method to specify that this property (which must match a JavaBean property they expose) is mandatory, and must be supplied as a config parameter.
afterPropertiesSet() - Method in class org.jasig.springframework.web.portlet.filter.GenericPortletFilterBean
Calls the initFilterBean() method that might contain custom initialization of a subclass.
APPLICATION_CONTEXT_ID_PREFIX - Static variable in interface org.jasig.springframework.web.portlet.context.PortletApplicationContext
Prefix for ApplicationContext ids that refer to portlet name.

C

cleanupMultipart(MultipartResourceRequest) - Method in class org.jasig.springframework.web.portlet.upload.CommonsPortlet2MultipartResolver
 
closeWebApplicationContext(ServletContext) - Method in class org.jasig.springframework.web.portlet.context.PortletContextLoader
Close Spring's web application context for the given portlet context.
CommonsPortlet2MultipartResolver - Class in org.jasig.springframework.web.portlet.upload
Since DispatcherPortlet does not permit multipart request resolving in a resource request phase and tinkering DispatcherPortlet is a fragile task, typical usage of this resolver should look like this: Define it in web application context:
CommonsPortlet2MultipartResolver() - Constructor for class org.jasig.springframework.web.portlet.upload.CommonsPortlet2MultipartResolver
 
CONFIG_LOCATION_PARAM - Static variable in class org.jasig.springframework.web.portlet.context.PortletContextLoader
Name of portlet context parameter (i.e., "portletContextConfigLocation") that can specify the config location for the root context, falling back to the implementation's default otherwise.
ConfigurablePortletEnvironment - Interface in org.jasig.springframework.web.portlet.context
Specialization of ConfigurableEnvironment allowing initialization of portlet-related PropertySource objects at the earliest moment the PortletContext and (optionally) PortletConfig become available.
configureAndRefreshPortletApplicationContext(ConfigurablePortletApplicationContext, PortletContext) - Method in class org.jasig.springframework.web.portlet.context.PortletContextLoader
 
CONTEXT_CLASS_PARAM - Static variable in class org.jasig.springframework.web.portlet.context.PortletContextLoader
Config param for the root PortletApplicationContext implementation class to use: "portletContextClass"
CONTEXT_ID_PARAM - Static variable in class org.jasig.springframework.web.portlet.context.PortletContextLoader
Config param for the root PortletApplicationContext id, to be used as serialization id for the underlying BeanFactory: "portletContextId"
CONTEXT_INITIALIZER_CLASSES_PARAM - Static variable in class org.jasig.springframework.web.portlet.context.PortletContextLoader
Config param for which ApplicationContextInitializer classes to use for initializing the web application context: "portletContextInitializerClasses"
contextDestroyed(ServletContextEvent) - Method in class org.jasig.springframework.web.portlet.context.PortletContextLoaderListener
 
contextInitialized(ServletContextEvent) - Method in class org.jasig.springframework.web.portlet.context.PortletContextLoaderListener
 
ContribDispatcherPortlet - Class in org.jasig.springframework.web.portlet.context
Extension to DispatcherPortlet that adds support for: A portlet application level spring context
ContribDispatcherPortlet() - Constructor for class org.jasig.springframework.web.portlet.context.ContribDispatcherPortlet
 
ContribStandardPortletEnvironment - Class in org.jasig.springframework.web.portlet.context
Adds support for ConfigurablePortletEnvironment to initialize the portlet property sources
ContribStandardPortletEnvironment() - Constructor for class org.jasig.springframework.web.portlet.context.ContribStandardPortletEnvironment
 
ContribStaticPortletApplicationContext - Class in org.jasig.springframework.web.portlet.context
Exists simply to add PortletApplicationContext into the type hierarchy of StaticPortletApplicationContext.
ContribStaticPortletApplicationContext() - Constructor for class org.jasig.springframework.web.portlet.context.ContribStaticPortletApplicationContext
 
ContribXmlPortletApplicationContext - Class in org.jasig.springframework.web.portlet.context
Exists simply to add PortletApplicationContext into the type hierarchy of XmlPortletApplicationContext.
ContribXmlPortletApplicationContext() - Constructor for class org.jasig.springframework.web.portlet.context.ContribXmlPortletApplicationContext
 
createEnvironment() - Method in class org.jasig.springframework.web.portlet.context.ContribXmlPortletApplicationContext
TODO this goes away once ContribStandardPortletEnvironment gets merged into StandardPortletEnvironment
createPortletApplicationContext(ApplicationContext) - Method in class org.jasig.springframework.web.portlet.context.ContribDispatcherPortlet
Uses PortletApplicationContextUtils2.getPortletApplicationContext(PortletContext) to see if the portlet application level context has been loaded.
createPortletApplicationContext(PortletContext) - Method in class org.jasig.springframework.web.portlet.context.PortletContextLoader
Instantiate the root PortletApplicationContext for this loader, either the default context class or a custom context class if specified.
customizeContext(PortletContext, ConfigurablePortletApplicationContext) - Method in class org.jasig.springframework.web.portlet.context.PortletContextLoader
Customize the ConfigurablePortletApplicationContext created by this PortletContextLoader after config locations have been supplied to the context but before the context is refreshed.

D

DefaultMultipartResourceRequest - Class in org.jasig.springframework.web.portlet.upload
 
DefaultMultipartResourceRequest(ResourceRequest) - Constructor for class org.jasig.springframework.web.portlet.upload.DefaultMultipartResourceRequest
 
DefaultMultipartResourceRequest(ResourceRequest, MultiValueMap<String, MultipartFile>, Map<String, String[]>, Map<String, String>) - Constructor for class org.jasig.springframework.web.portlet.upload.DefaultMultipartResourceRequest
 
DelegatingPortletFilterProxy - Class in org.jasig.springframework.web.portlet.filter
Proxy for a standard Portlet 2.0 Filter, delegating to a Spring-managed bean that implements the Filter interface.
DelegatingPortletFilterProxy() - Constructor for class org.jasig.springframework.web.portlet.filter.DelegatingPortletFilterProxy
 
destroy() - Method in class org.jasig.springframework.web.portlet.filter.DelegatingPortletFilterProxy
 
destroy() - Method in class org.jasig.springframework.web.portlet.filter.GenericPortletFilterBean
Subclasses may override this to perform custom filter shutdown.
destroyDelegate(PortletFilter) - Method in class org.jasig.springframework.web.portlet.filter.DelegatingPortletFilterProxy
Destroy the PortletFilter delegate.
determineContextClass(PortletContext) - Method in class org.jasig.springframework.web.portlet.context.PortletContextLoader
Return the PortletApplicationContext implementation class to use, either the default XmlPortletApplicationContext or a custom context class if specified.
determineContextInitializerClasses(PortletContext) - Method in class org.jasig.springframework.web.portlet.context.PortletContextLoader
Return the ApplicationContextInitializer implementation classes to use if any have been specified by PortletContextLoader.CONTEXT_INITIALIZER_CLASSES_PARAM.
determineEncoding(ResourceRequest) - Method in class org.jasig.springframework.web.portlet.upload.CommonsPortlet2MultipartResolver
 
doCommonFilter(PortletRequest, PortletResponse, FilterChain) - Method in class org.jasig.springframework.web.portlet.filter.GenericPortletFilterBean
Can be implemented by subclasses to provide filter handling common to all request types.
doFilter(ResourceRequest, ResourceResponse, FilterChain) - Method in class org.jasig.springframework.web.portlet.filter.DelegatingPortletFilterProxy
 
doFilter(EventRequest, EventResponse, FilterChain) - Method in class org.jasig.springframework.web.portlet.filter.DelegatingPortletFilterProxy
 
doFilter(RenderRequest, RenderResponse, FilterChain) - Method in class org.jasig.springframework.web.portlet.filter.DelegatingPortletFilterProxy
 
doFilter(ActionRequest, ActionResponse, FilterChain) - Method in class org.jasig.springframework.web.portlet.filter.DelegatingPortletFilterProxy
 
doFilter(ActionRequest, ActionResponse, FilterChain) - Method in class org.jasig.springframework.web.portlet.filter.GenericPortletFilterBean
Calls GenericPortletFilterBean.doCommonFilter(PortletRequest, PortletResponse, FilterChain)
doFilter(EventRequest, EventResponse, FilterChain) - Method in class org.jasig.springframework.web.portlet.filter.GenericPortletFilterBean
Calls GenericPortletFilterBean.doCommonFilter(PortletRequest, PortletResponse, FilterChain)
doFilter(ResourceRequest, ResourceResponse, FilterChain) - Method in class org.jasig.springframework.web.portlet.filter.GenericPortletFilterBean
Calls GenericPortletFilterBean.doCommonFilter(PortletRequest, PortletResponse, FilterChain)
doFilter(RenderRequest, RenderResponse, FilterChain) - Method in class org.jasig.springframework.web.portlet.filter.GenericPortletFilterBean
Calls GenericPortletFilterBean.doCommonFilter(PortletRequest, PortletResponse, FilterChain)
doFilter(PortletRequest, PortletResponse, FilterChain) - Static method in class org.jasig.springframework.web.portlet.filter.PortletFilterUtils
Call doFilter and use the PortletRequest.LIFECYCLE_PHASE attribute to figure out what type of request/response are in use and call the appropriate doFilter method on FilterChain
doFilter(PortletFilter, PortletRequest, PortletResponse, FilterChain) - Static method in class org.jasig.springframework.web.portlet.filter.PortletFilterUtils
Call doFilter on the specified PortletFilter, determines the right PortletFilter interface to use by looking at the PortletRequest.LIFECYCLE_PHASE attribute

F

findWebApplicationContext() - Method in class org.jasig.springframework.web.portlet.filter.DelegatingPortletFilterProxy
Retrieve a WebApplicationContext from the PortletContext.

G

GenericPortletFilterBean - Class in org.jasig.springframework.web.portlet.filter
Simple base implementation of ActionFilter, EventFilter, RenderFilter, and ResourceFilter which treats its config parameters (init-param entries within the filter tag in portlet.xml) as bean properties.
GenericPortletFilterBean() - Constructor for class org.jasig.springframework.web.portlet.filter.GenericPortletFilterBean
 
getCharacterEncoding() - Method in class org.jasig.springframework.web.portlet.upload.PortletResourceRequestContext
 
getContentLength() - Method in class org.jasig.springframework.web.portlet.upload.PortletResourceRequestContext
 
getContentType() - Method in class org.jasig.springframework.web.portlet.upload.PortletResourceRequestContext
 
getContextAttribute() - Method in class org.jasig.springframework.web.portlet.filter.DelegatingPortletFilterProxy
Return the name of the ServletContext attribute which should be used to retrieve the PortletApplicationContext from which to load the delegate PortletFilter bean.
getCurrentPortletApplicationContext() - Static method in class org.jasig.springframework.web.portlet.context.PortletContextLoader
Obtain the Spring root portlet application context for the current thread (i.e.
getEnvironment() - Method in class org.jasig.springframework.web.portlet.context.ContribXmlPortletApplicationContext
TODO this gets moved into ConfigurablePortletApplicationContext
getFile(String) - Method in class org.jasig.springframework.web.portlet.upload.DefaultMultipartResourceRequest
 
getFileMap() - Method in class org.jasig.springframework.web.portlet.upload.DefaultMultipartResourceRequest
 
getFileNames() - Method in class org.jasig.springframework.web.portlet.upload.DefaultMultipartResourceRequest
 
getFiles(String) - Method in class org.jasig.springframework.web.portlet.upload.DefaultMultipartResourceRequest
 
getFilterConfig() - Method in class org.jasig.springframework.web.portlet.filter.GenericPortletFilterBean
Make the FilterConfig of this filter available, if any.
getFilterName() - Method in class org.jasig.springframework.web.portlet.filter.GenericPortletFilterBean
Make the name of this filter available to subclasses.
getInputStream() - Method in class org.jasig.springframework.web.portlet.upload.PortletResourceRequestContext
 
getMultiFileMap() - Method in class org.jasig.springframework.web.portlet.upload.DefaultMultipartResourceRequest
 
getMultipartContentType(String) - Method in class org.jasig.springframework.web.portlet.upload.DefaultMultipartResourceRequest
 
getMultipartFiles() - Method in class org.jasig.springframework.web.portlet.upload.DefaultMultipartResourceRequest
 
getMultipartParameterContentTypes() - Method in class org.jasig.springframework.web.portlet.upload.DefaultMultipartResourceRequest
 
getMultipartParameters() - Method in class org.jasig.springframework.web.portlet.upload.DefaultMultipartResourceRequest
 
getParameter(String) - Method in class org.jasig.springframework.web.portlet.upload.DefaultMultipartResourceRequest
 
getParameterMap() - Method in class org.jasig.springframework.web.portlet.upload.DefaultMultipartResourceRequest
 
getParameterNames() - Method in class org.jasig.springframework.web.portlet.upload.DefaultMultipartResourceRequest
 
getParameterValues(String) - Method in class org.jasig.springframework.web.portlet.upload.DefaultMultipartResourceRequest
 
getPortletApplicationContext(PortletContext) - Static method in class org.jasig.springframework.web.portlet.context.PortletApplicationContextUtils2
Find the root PortletApplicationContext for this portlet application, which is typically loaded via PortletContextLoaderListener.
getPortletApplicationContext(PortletContext, String) - Static method in class org.jasig.springframework.web.portlet.context.PortletApplicationContextUtils2
Find a custom PortletApplicationContext for this web application.
getPortletApplicationContext(PortletRequest) - Static method in class org.jasig.springframework.web.portlet.support.PortletRequestContextUtils
Look for the PortletApplicationContext associated with the DispatcherPortlet that has initiated request processing.
getPortletApplicationContext(PortletRequest, PortletContext) - Static method in class org.jasig.springframework.web.portlet.support.PortletRequestContextUtils
Look for the PortletApplicationContext associated with the DispatcherPortlet that has initiated request processing, and for the global context if none was found associated with the current request.
getPortletContext() - Method in interface org.jasig.springframework.web.portlet.context.PortletApplicationContext
Return the standard Portlet API PortletContext for this application.
getPortletContext() - Method in class org.jasig.springframework.web.portlet.filter.GenericPortletFilterBean
Make the PortletContext of this filter available to subclasses.
getRequiredPortletApplicationContext(PortletContext) - Static method in class org.jasig.springframework.web.portlet.context.PortletApplicationContextUtils2
Find the root PortletApplicationContext for this portlet application, which is typically loaded via ContextLoaderFilter.
getTargetBeanName() - Method in class org.jasig.springframework.web.portlet.filter.DelegatingPortletFilterProxy
Return the name of the target bean in the Spring application context.
getWebApplicationContext(PortletRequest, PortletContext) - Static method in class org.jasig.springframework.web.portlet.support.PortletRequestContextUtils
Look for the PortletApplicationContext associated with the DispatcherPortlet that has initiated request processing, for the global portlet context if none was found associated with the current request, and for the global context if no global portlet context was found.

I

init(FilterConfig) - Method in class org.jasig.springframework.web.portlet.filter.GenericPortletFilterBean
 
initBeanWrapper(BeanWrapper) - Method in class org.jasig.springframework.web.portlet.filter.GenericPortletFilterBean
Initialize the BeanWrapper for this GenericPortletFilterBean, possibly with custom editors.
initDelegate(boolean) - Method in class org.jasig.springframework.web.portlet.filter.DelegatingPortletFilterProxy
Initialize the PortletFilter delegate, defined as bean the given Spring application context.
initFilterBean() - Method in class org.jasig.springframework.web.portlet.filter.DelegatingPortletFilterProxy
 
initFilterBean() - Method in class org.jasig.springframework.web.portlet.filter.GenericPortletFilterBean
Subclasses may override this to perform custom initialization.
initializeMultipart() - Method in class org.jasig.springframework.web.portlet.upload.DefaultMultipartResourceRequest
 
initPropertySources(ServletContext, PortletContext, PortletConfig) - Method in interface org.jasig.springframework.web.portlet.context.ConfigurablePortletEnvironment
Replace any stub property source instances acting as placeholders with real portlet context/config property sources using the given parameters.
initPropertySources(ServletContext, PortletContext, PortletConfig) - Method in class org.jasig.springframework.web.portlet.context.ContribStandardPortletEnvironment
 
initPropertySources() - Method in class org.jasig.springframework.web.portlet.context.ContribXmlPortletApplicationContext
initWebApplicationContext(PortletContext) - Method in class org.jasig.springframework.web.portlet.context.PortletContextLoader
Initialize Spring's portlet application context for the given portlet context, using the application context provided at construction time, or creating a new one according to the "contextClass" and "contextConfigLocation" context-params.
invokeDelegate(ActionFilter, ActionRequest, ActionResponse, FilterChain) - Method in class org.jasig.springframework.web.portlet.filter.DelegatingPortletFilterProxy
Actually invoke the delegate ActionFilter with the given request and response.
invokeDelegate(EventFilter, EventRequest, EventResponse, FilterChain) - Method in class org.jasig.springframework.web.portlet.filter.DelegatingPortletFilterProxy
Actually invoke the delegate EventFilter with the given request and response.
invokeDelegate(RenderFilter, RenderRequest, RenderResponse, FilterChain) - Method in class org.jasig.springframework.web.portlet.filter.DelegatingPortletFilterProxy
Actually invoke the delegate RenderFilter with the given request and response.
invokeDelegate(ResourceFilter, ResourceRequest, ResourceResponse, FilterChain) - Method in class org.jasig.springframework.web.portlet.filter.DelegatingPortletFilterProxy
Actually invoke the delegate ResourceFilter with the given request and response.
isMultipart(ResourceRequest) - Method in class org.jasig.springframework.web.portlet.upload.CommonsPortlet2MultipartResolver
 
isMultipartContent(ResourceRequest) - Static method in class org.jasig.springframework.web.portlet.upload.Portlet2FileUpload
 
isTargetFilterLifecycle() - Method in class org.jasig.springframework.web.portlet.filter.DelegatingPortletFilterProxy
Return whether to invoke the PortletFilter.init and PortletFilter.destroy lifecycle methods on the target bean.

L

loadParentContext(PortletContext) - Method in class org.jasig.springframework.web.portlet.context.PortletContextLoader
Template method with default implementation (which may be overridden by a subclass), to load or obtain an ApplicationContext instance which will be used as the parent context of the root PortletApplicationContext.
logger - Variable in class org.jasig.springframework.web.portlet.filter.GenericPortletFilterBean
Logger available to subclasses

M

MinimizedStateHandlerInterceptor - Class in org.jasig.springframework.web.portlet.interceptor
 
MinimizedStateHandlerInterceptor() - Constructor for class org.jasig.springframework.web.portlet.interceptor.MinimizedStateHandlerInterceptor
 
MultipartResourceRequest - Interface in org.jasig.springframework.web.portlet.upload
 

N

newFileUpload(FileItemFactory) - Method in class org.jasig.springframework.web.portlet.upload.CommonsPortlet2MultipartResolver
 

O

org.jasig.springframework.web.portlet.context - package org.jasig.springframework.web.portlet.context
 
org.jasig.springframework.web.portlet.filter - package org.jasig.springframework.web.portlet.filter
 
org.jasig.springframework.web.portlet.interceptor - package org.jasig.springframework.web.portlet.interceptor
 
org.jasig.springframework.web.portlet.support - package org.jasig.springframework.web.portlet.support
 
org.jasig.springframework.web.portlet.upload - package org.jasig.springframework.web.portlet.upload
 

P

parseRequest(ResourceRequest) - Method in class org.jasig.springframework.web.portlet.upload.CommonsPortlet2MultipartResolver
 
parseRequest(ResourceRequest) - Method in class org.jasig.springframework.web.portlet.upload.Portlet2FileUpload
 
Portlet2FileUpload - Class in org.jasig.springframework.web.portlet.upload
 
Portlet2FileUpload() - Constructor for class org.jasig.springframework.web.portlet.upload.Portlet2FileUpload
 
Portlet2FileUpload(FileItemFactory) - Constructor for class org.jasig.springframework.web.portlet.upload.Portlet2FileUpload
 
PORTLET_APPLICATION_CONTEXT_ATTRIBUTE - Static variable in class org.jasig.springframework.web.portlet.context.ContribDispatcherPortlet
Request attribute to hold the current portlet application context.
PORTLET_CONTEXT_BEAN_NAME - Static variable in interface org.jasig.springframework.web.portlet.context.PortletApplicationContext
Name of the PortletContext environment bean in the factory.
PortletApplicationContext - Interface in org.jasig.springframework.web.portlet.context
Interface to provide configuration for a web application.
PortletApplicationContextUtils2 - Class in org.jasig.springframework.web.portlet.context
Convenience methods for retrieving the root PortletApplicationContext for a given PortletContext.
PortletApplicationContextUtils2() - Constructor for class org.jasig.springframework.web.portlet.context.PortletApplicationContextUtils2
 
PortletContextLoader - Class in org.jasig.springframework.web.portlet.context
Performs the actual initialization work for the root application context.
PortletContextLoader(ServletContext) - Constructor for class org.jasig.springframework.web.portlet.context.PortletContextLoader
 
PortletContextLoaderListener - Class in org.jasig.springframework.web.portlet.context
Bootstrap listener to start up and shut down Spring's root PortletApplicationContext.
PortletContextLoaderListener() - Constructor for class org.jasig.springframework.web.portlet.context.PortletContextLoaderListener
 
PortletFilterUtils - Class in org.jasig.springframework.web.portlet.filter
Utilities for interacting with a portlet filter chain
PortletRequestContextUtils - Class in org.jasig.springframework.web.portlet.support
Utility class for easy access to request-specific state which has been set by the ContribDispatcherPortlet.
PortletRequestContextUtils() - Constructor for class org.jasig.springframework.web.portlet.support.PortletRequestContextUtils
 
PortletResourceRequestContext - Class in org.jasig.springframework.web.portlet.upload
 
PortletResourceRequestContext(ResourceRequest) - Constructor for class org.jasig.springframework.web.portlet.upload.PortletResourceRequestContext
 
preHandleRender(RenderRequest, RenderResponse, Object) - Method in class org.jasig.springframework.web.portlet.interceptor.MinimizedStateHandlerInterceptor
 

R

resolveMultipart(ResourceRequest) - Method in class org.jasig.springframework.web.portlet.upload.CommonsPortlet2MultipartResolver
 
ROOT_PORTLET_APPLICATION_CONTEXT_ATTRIBUTE - Static variable in interface org.jasig.springframework.web.portlet.context.PortletApplicationContext
Context attribute to bind root PortletApplicationContext to on successful startup.
ROOT_PORTLET_APPLICATION_CONTEXT_LOADER_ATTRIBUTE - Static variable in class org.jasig.springframework.web.portlet.context.PortletApplicationContextUtils2
Context attribute to bind root PortletContextLoader

S

setBeanName(String) - Method in class org.jasig.springframework.web.portlet.filter.GenericPortletFilterBean
Stores the bean name as defined in the Spring bean factory.
setContextAttribute(String) - Method in class org.jasig.springframework.web.portlet.filter.DelegatingPortletFilterProxy
Set the name of the ServletContext attribute which should be used to retrieve the PortletApplicationContext from which to load the delegate PortletFilter bean.
setEnvironment(Environment) - Method in class org.jasig.springframework.web.portlet.filter.GenericPortletFilterBean
setMultipartFiles(MultiValueMap<String, MultipartFile>) - Method in class org.jasig.springframework.web.portlet.upload.DefaultMultipartResourceRequest
 
setMultipartParameterContentTypes(Map<String, String>) - Method in class org.jasig.springframework.web.portlet.upload.DefaultMultipartResourceRequest
 
setMultipartParameters(Map<String, String[]>) - Method in class org.jasig.springframework.web.portlet.upload.DefaultMultipartResourceRequest
 
setPortletContext(PortletContext) - Method in class org.jasig.springframework.web.portlet.filter.GenericPortletFilterBean
Stores the PortletContext that the bean factory runs in.
setResolveLazily(boolean) - Method in class org.jasig.springframework.web.portlet.upload.CommonsPortlet2MultipartResolver
 
setTargetBeanName(String) - Method in class org.jasig.springframework.web.portlet.filter.DelegatingPortletFilterProxy
Set the name of the target bean in the Spring application context.
setTargetFilterLifecycle(boolean) - Method in class org.jasig.springframework.web.portlet.filter.DelegatingPortletFilterProxy
Set whether to invoke the PortletFilter.init and PortletFilter.destroy lifecycle methods on the target bean.

A C D F G I L M N O P R S

Copyright © 2013 Jasig. All Rights Reserved.