b44de05f30c44486a62ccad5102127e0a87b040f
[aaf/authz.git] / cadi / core / src / main / java / org / onap / aaf / cadi / config / GetAccess.java
1 /**
2  * ============LICENSE_START====================================================
3  * org.onap.aaf
4  * ===========================================================================
5  * Copyright (c) 2018 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
22 package org.onap.aaf.cadi.config;
23
24 import org.onap.aaf.cadi.PropAccess;
25
26 public class GetAccess extends PropAccess {
27         private final Get getter;
28         
29         public GetAccess(Get getter) {
30                 super(new String[]{"cadi_prop_files="+getter.get("cadi_prop_files", null, true)});
31                 this.getter = getter;
32         }
33         
34         /* (non-Javadoc)
35          * @see org.onap.aaf.cadi.PropAccess#getProperty(java.lang.String, java.lang.String)
36          */
37         @Override
38         public String getProperty(String tag, String def) {
39                 String rv;
40                 rv = super.getProperty(tag, null);
41                 if(rv==null && getter!=null) {
42                         rv = getter.get(tag, null, true);
43                 }
44                 return rv==null?def:rv;
45         }
46         /* (non-Javadoc)
47          * @see org.onap.aaf.cadi.PropAccess#getProperty(java.lang.String)
48          */
49         @Override
50         public String getProperty(String tag) {
51                 return getProperty(tag, null);
52         }
53
54         public Get get() {
55                 return getter;
56         }
57 }