Added oparent to sdc main
[sdc.git] / catalog-fe / src / main / java / org / openecomp / sdc / fe / GzipFilter.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.sdc.fe;
22
23 import javax.servlet.*;
24 import javax.servlet.http.HttpServletResponse;
25 import java.io.IOException;
26
27 public class GzipFilter implements Filter {
28
29     @Override
30     public void doFilter(final ServletRequest request, final ServletResponse response, final FilterChain chain)
31             throws IOException,
32             ServletException {
33
34       
35         final HttpServletResponse httpResponse = (HttpServletResponse) response;
36
37
38         httpResponse.setHeader("Content-Encoding", "gzip");
39         httpResponse.setHeader("Content-Type", "application/javascript");
40         chain.doFilter(request, response);
41     }
42
43         @Override
44         public void init(FilterConfig filterConfig) throws ServletException {
45                 // TODO Auto-generated method stub
46                 
47         }
48
49         @Override
50         public void destroy() {
51                 // TODO Auto-generated method stub
52                 
53         }
54 }