Change the header to SO
[so.git] / mso-api-handlers / mso-api-handler-common / src / main / java / org / openecomp / mso / 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  * 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.mso.apihandler.common;
22
23
24 import java.io.FileInputStream;
25 import java.io.FileNotFoundException;
26 import java.io.InputStream;
27 import java.io.InputStreamReader;
28
29 import org.w3c.dom.ls.LSInput;
30 import org.w3c.dom.ls.LSResourceResolver;
31
32 import org.openecomp.mso.logger.MsoLogger;
33
34 public class PathResourceResolver implements LSResourceResolver {
35         
36     private static MsoLogger msoLogger = MsoLogger.getMsoLogger(MsoLogger.Catalog.APIH);
37
38     private String path;
39         
40     public PathResourceResolver(String path) {
41         
42         this.path = path;
43     }
44     
45     @Override
46     public LSInput resolveResource(String type, String namespaceURI, String publicId, String systemId, String baseURI) {
47  
48         LSInputImpl input = new LSInputImpl();
49  
50         InputStream stream = null;
51                 try {
52                         stream = new FileInputStream(path + systemId);
53                 } catch (FileNotFoundException e) {
54                     msoLogger.debug ("Could not resolve resource based on file: " + path + systemId, e);
55                 }
56  
57         input.setPublicId(publicId);
58         input.setSystemId(systemId);
59         input.setBaseURI(baseURI);
60         input.setCharacterStream(new InputStreamReader(stream));
61  
62         return input;
63     }
64 }