Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.acegisecurity.util: Javadoc index of package org.acegisecurity.util.


Package Samples:

org.acegisecurity.util

Classes:

FilterChainProxy: Delegates Filter requests to a list of Spring-managed beans. The FilterChainProxy is loaded via a standard FilterToBeanProxy declaration in web.xml . FilterChainProxy will then pass init(FilterConfig) 55 , destroy() 55 , #doInit() and doFilter(ServletRequest, ServletResponse, FilterChain) 55 invocations through to each Filter defined against FilterChainProxy . FilterChainProxy is configured using a standard org.acegisecurity.intercept.web.FilterInvocationDefinitionSource . Each possible URI pattern that FilterChainProxy should service must be entered. The first matching URI pattern located by FilterInvocationDefinitionSource ...
FilterToBeanProxy: Delegates Filter requests to a Spring-managed bean. This class acts as a proxy on behalf of a target Filter that is defined in the Spring bean context. It is necessary to specify which target Filter should be proxied as a filter initialization parameter. On filter initialisation, the class will use Spring's WebApplicationContextUtils.getWebApplicationContext(ServletContext sc) > WebApplicationContextUtils.getWebApplicationContext(ServletContext sc) 55 method to obtain an ApplicationContext instance. It will expect to find the target Filter in this ApplicationContext . To use this filter, it is ...
PortResolverImpl: Concrete implementation of PortResolver that obtains the port from ServletRequest.getServerPort() . This class is capable of handling the IE bug which results in an incorrect URL being presented in the header subsequent to a redirect to a different scheme and port where the port is not a well-known number (ie 80 or 443). Handling involves detecting an incorrect response from ServletRequest.getServerPort() for the scheme (eg a HTTP request on 8443) and then determining the real server port (eg HTTP request is really on 8080). The map of valid ports is obtained from the configured PortMapper .
PortMapperImpl: Concrete implementation of PortMapper that obtains HTTP:HTTPS pairs from the application context. By default the implementation will assume 80:443 and 8080:8443 are HTTP:HTTPS pairs respectively. If different pairs are required, use setPortMappings(Map) 55 .
PortResolver: A PortResolver determines the port a web request was received on. This interface is necessary because ServletRequest.getServerPort() may not return the correct port in certain circumstances. For example, if the browser does not construct the URL correctly after a redirect.
MethodInvocationUtils: Static utility methods for creating MethodInvocation s usable within Acegi Security. All methods of this class return a SimpleMethodInvocation .
InMemoryResource: An in memory implementation of Spring's org.springframework.core.io.Resource interface. Used by the "Acegifier" web application to create a bean factory from an XML string, rather than a file.
PortMapper: PortMapper implementations provide callers with information about which HTTP ports are associated with which HTTPS ports on the system, and vice versa.
StringSplitUtils: Provides several String manipulation methods.
SimpleMethodInvocation: Represents the AOP Alliance MethodInvocation .

Home | Contact Us | Privacy Policy | Terms of Service