000869e41e44ae64660cf58d8436798ea4f4d120
[dmaap/messagerouter/msgrtr.git] / src / main / java / com / att / dmf / mr / utils / PropertyReader.java
1 /*******************************************************************************
2  *  ============LICENSE_START=======================================================
3  *  org.onap.dmaap
4  *  ================================================================================
5  *  Copyright © 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  *        http://www.apache.org/licenses/LICENSE-2.0
11 *  
12  *  Unless required by applicable law or agreed to in writing, software
13  *  distributed under the License is distributed on an "AS IS" BASIS,
14  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *  See the License for the specific language governing permissions and
16  *  limitations under the License.
17  *  ============LICENSE_END=========================================================
18  *  
19  *  ECOMP is a trademark and service mark of AT&T Intellectual Property.
20  *  
21  *******************************************************************************/
22 package com.att.dmf.mr.utils;
23
24 import java.util.Map;
25
26 import com.att.eelf.configuration.EELFLogger;
27 import com.att.eelf.configuration.EELFManager;
28 import com.att.nsa.drumlin.till.nv.impl.nvReadableStack;
29
30 /**
31  * 
32  * @author nilesh.labde
33  *
34  *
35  */
36 public class PropertyReader extends nvReadableStack {
37         /**
38          * 
39          * initializing logger
40          * 
41          */
42         
43         private static final EELFLogger log = EELFManager.getInstance().getLogger(PropertyReader.class);
44
45
46         /**
47          * constructor initialization
48          * 
49          * @throws loadException
50          * 
51          */
52         public PropertyReader() throws loadException {
53         
54                 
55                 
56         
57                 
58         }
59
60         /**
61          * 
62          * 
63          * @param argMap
64          * @param key
65          * @param defaultValue
66          * @return
67          * 
68          */
69         @SuppressWarnings("unused")
70         private static String getSetting(Map<String, String> argMap, final String key, final String defaultValue) {
71                 String val = (String) argMap.get(key);
72                 if (null == val) {
73                         return defaultValue;
74                 }
75                 return val;
76         }
77
78         /**
79          * 
80          * @param resourceName
81          * @param clazz
82          * @return
83          * @exception MalformedURLException
84          * 
85          */
86         
87                 
88                 
89
90                         
91                         
92                 
93
94                 
95
96                         
97
98                                 
99
100                                 
101
102                                 
103                         
104                                         
105                         
106                 
107
108                         
109
110                         
111                                 
112                 
113
114                         
115
116                         
117                                 
118                 
119                 
120                         
121         
122                 
123         
124
125 }