gluu
|
公開メンバ関数 | |
void | init (FilterConfig filterConfig) throws ServletException |
void | destroy () |
void | doFilter (ServletRequest servletRequest, ServletResponse servletResponse, FilterChain chain) throws IOException, ServletException |
静的公開メンバ関数 | |
static String | getParameter (final HttpServletRequest request, final String parameter) |
限定公開メンバ関数 | |
final String | constructRedirectUrl (final HttpServletRequest request) |
final String | getPropertyFromInitParams (final FilterConfig filterConfig, final String propertyName, final String defaultValue) |
限定公開変数類 | |
final Log | log = LogFactory.getLog(getClass()) |
Filter implementation to intercept all requests and attempt to logout the client by redirecting them to OAuth.
|
inlineprotectedinherited |
|
inline |
|
inlinestaticinherited |
Method for retrieving a parameter from the request without disrupting the reader UNLESS the parameter actually exists in the query string.
request | the request to check. |
parameter | the parameter to look for. |
|
inlineprotectedinherited |
Retrieves the property from the FilterConfig. First it checks the FilterConfig's initParameters to see if it has a value. If it does, it returns that, otherwise it retrieves the ServletContext's initParameters and returns that value if any.
filterConfig | the Filter Configuration. |
propertyName | the property to retrieve. |
defaultValue | the default value if the property is not found. |
|
inline |
|
protectedinherited |