Renaming openecomp to onap
[aai/sparky-be.git] / src / main / java / org / onap / aai / sparky / config / oxm / OxmModelLoaderFilter.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017 Amdocs
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *       http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  *
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  */
23 package org.onap.aai.sparky.config.oxm;
24
25 import java.io.IOException;
26 import java.net.UnknownHostException;
27
28 import javax.servlet.Filter;
29 import javax.servlet.FilterChain;
30 import javax.servlet.FilterConfig;
31 import javax.servlet.ServletException;
32 import javax.servlet.ServletRequest;
33 import javax.servlet.ServletResponse;
34
35 import org.onap.aai.sparky.util.NodeUtils;
36 import org.onap.aai.cl.mdc.MdcContext;
37
38 /**
39  * The Class OxmModelLoaderFilter.
40  */
41 public class OxmModelLoaderFilter implements Filter {
42   /* (non-Javadoc)
43    * @see javax.servlet.Filter#doFilter(javax.servlet.ServletRequest, javax.servlet.ServletResponse, javax.servlet.FilterChain)
44    */
45   @Override
46   public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain)
47       throws IOException, ServletException {
48
49     /*
50      * However, we will setup the filtermap with a url that should never get it, so we shouldn't
51      * ever be in here.
52      */
53
54     chain.doFilter(request, response);
55   }
56
57   /* (non-Javadoc)
58    * @see javax.servlet.Filter#init(javax.servlet.FilterConfig)
59    */
60   @Override
61   public void init(FilterConfig filterConfig) throws ServletException {
62         String txnID = NodeUtils.getRandomTxnId();
63         MdcContext.initialize(txnID, "OxmModelLoaderFilter", "",
64                "Init", "");
65
66         try {
67       OxmModelLoader.getInstance();
68     } catch (Exception exc) {
69       throw new ServletException("Caught an exception while initializing OXM model loader filter",
70           exc);
71     }
72
73   }
74
75   /* (non-Javadoc)
76    * @see javax.servlet.Filter#destroy()
77    */
78   @Override
79   public void destroy() {
80     // TODO Auto-generated method stub
81
82   }
83
84 }