f2fd6a22fd00e194f05f92be957d9964f145948e
[aai/champ.git] / champ-service / src / main / java / org / onap / champ / util / ChampProperties.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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
21  */
22 package org.onap.champ.util;
23
24 import java.io.File;
25 import java.io.FileInputStream;
26 import java.io.FileNotFoundException;
27 import java.io.FileOutputStream;
28 import java.io.IOException;
29 import java.util.Properties;
30
31 public class ChampProperties {
32
33   private static Properties properties;
34
35   static {
36     properties = new Properties();
37     File file = new File(ChampServiceConstants.CHAMP_CONFIG_FILE);
38     try {
39       properties.load(new FileInputStream(file));
40     } catch (IOException e) {
41       e.printStackTrace();
42       Runtime.getRuntime().halt(1);
43     }
44   }
45
46   public static String get(String key) {
47     return properties.getProperty(key);
48   }
49
50   public static String get(String key, String defaultValue) {
51     return properties.getProperty(key, defaultValue);
52   }
53
54   public static void put(String key, String value) {
55     properties.setProperty(key, value);
56     FileOutputStream fileOut = null;
57     try {
58       fileOut = new FileOutputStream(new File(ChampServiceConstants.CHAMP_CONFIG_FILE));
59       properties.store(fileOut, "Added property: " + key);
60     } catch (Exception e) {
61       e.printStackTrace();
62     } finally {
63
64       try {
65         fileOut.close();
66       } catch (IOException ex) {
67         ex.printStackTrace();
68       }
69     }
70
71   }
72
73
74 }