Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
AuthenticationGwtRpcFilter |
|
| 3.0;3 |
1 | /** | |
2 | * Copyright 2010 The Kuali Foundation Licensed under the | |
3 | * Educational Community License, Version 2.0 (the "License"); you may | |
4 | * not use this file except in compliance with the License. You may | |
5 | * obtain a copy of the License at | |
6 | * | |
7 | * http://www.osedu.org/licenses/ECL-2.0 | |
8 | * | |
9 | * Unless required by applicable law or agreed to in writing, | |
10 | * software distributed under the License is distributed on an "AS IS" | |
11 | * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express | |
12 | * or implied. See the License for the specific language governing | |
13 | * permissions and limitations under the License. | |
14 | */ | |
15 | ||
16 | package org.kuali.student.security.filter; | |
17 | ||
18 | import java.io.IOException; | |
19 | ||
20 | import javax.servlet.FilterChain; | |
21 | import javax.servlet.ServletException; | |
22 | import javax.servlet.ServletRequest; | |
23 | import javax.servlet.ServletResponse; | |
24 | import javax.servlet.http.HttpServletRequest; | |
25 | import javax.servlet.http.HttpServletResponse; | |
26 | ||
27 | import org.springframework.web.filter.GenericFilterBean; | |
28 | ||
29 | /** | |
30 | * This is a description of what this class does - Rich don't forget to fill | |
31 | * this in. | |
32 | * | |
33 | * @author Kuali Rice Team (kuali-rice@googlegroups.com) | |
34 | * | |
35 | */ | |
36 | 0 | public class AuthenticationGwtRpcFilter extends GenericFilterBean { |
37 | ||
38 | public void doFilter(ServletRequest request, ServletResponse response, | |
39 | FilterChain chain) throws IOException, ServletException { | |
40 | 0 | if (request instanceof HttpServletRequest && response instanceof HttpServletResponse) { |
41 | 0 | doFilterHttp((HttpServletRequest) request, |
42 | (HttpServletResponse) response, chain); | |
43 | } else { | |
44 | // TODO: handle this | |
45 | } | |
46 | 0 | } |
47 | ||
48 | public void doFilterHttp(HttpServletRequest request, | |
49 | HttpServletResponse response, FilterChain filterChain) | |
50 | throws IOException, ServletException { | |
51 | ||
52 | 0 | String URI = request.getRequestURI(); |
53 | ||
54 | 0 | if (URI.endsWith(".html") && !URI.endsWith(".cache.html")) { |
55 | 0 | response.setHeader("Cache-Control", "no-cache"); |
56 | 0 | response.setHeader("Cache-Control", "no-store"); |
57 | } | |
58 | 0 | filterChain.doFilter(request, response); |
59 | 0 | } |
60 | ||
61 | /* I don't think we need this | |
62 | public int getOrder() { | |
63 | return FilterChainOrder.CAS_PROCESSING_FILTER + 1; | |
64 | }*/ | |
65 | } |