Add simplified local setup
[aai/test-config.git] / local-setup / src / main / java / onap / aai / util / Resources.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2018-2019 Nokia 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 package onap.aai.util;
21
22 import java.io.BufferedReader;
23 import java.io.InputStream;
24 import java.io.InputStreamReader;
25 import java.util.stream.Collectors;
26
27 public class Resources {
28
29     public static InputStream inputStreamFrom(String fileName) {
30         return Resources.class.getClassLoader().getResourceAsStream(fileName);
31     }
32
33     public static BufferedReader readerFrom(String fileName) {
34         return new BufferedReader(new InputStreamReader(inputStreamFrom(fileName)));
35     }
36
37     public static String rawTextFrom(String fileName) {
38         return readerFrom(fileName).lines().collect(Collectors.joining());
39     }
40 }