Replaced all tabs with spaces in java and pom.xml
[so.git] / mso-api-handlers / mso-api-handler-common / src / main / java / org / onap / so / apihandler / common / PathResourceResolver.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Modifications Copyright (c) 2019 Samsung
8  * ================================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.so.apihandler.common;
24
25
26 import java.io.FileInputStream;
27 import java.io.FileNotFoundException;
28 import java.io.InputStream;
29 import java.io.InputStreamReader;
30 import org.slf4j.Logger;
31 import org.slf4j.LoggerFactory;
32 import org.w3c.dom.ls.LSInput;
33 import org.w3c.dom.ls.LSResourceResolver;
34
35 public class PathResourceResolver implements LSResourceResolver {
36
37     private static Logger logger = LoggerFactory.getLogger(PathResourceResolver.class);
38
39     private String path;
40
41     public PathResourceResolver(String path) {
42
43         this.path = path;
44     }
45
46     @Override
47     public LSInput resolveResource(String type, String namespaceURI, String publicId, String systemId, String baseURI) {
48
49         LSInputImpl input = new LSInputImpl();
50
51         InputStream stream = null;
52         try {
53             stream = new FileInputStream(path + systemId);
54         } catch (FileNotFoundException e) {
55             logger.debug("Could not resolve resource based on file: {}", path + systemId, e);
56         }
57
58         input.setPublicId(publicId);
59         input.setSystemId(systemId);
60         input.setBaseURI(baseURI);
61         input.setCharacterStream(new InputStreamReader(stream));
62
63         return input;
64     }
65 }