Mass removal of all Tabs (Style Warnings)
[aaf/authz.git] / auth / auth-core / src / main / java / org / onap / aaf / auth / common / Define.java
1 /*******************************************************************************
2  * ============LICENSE_START====================================================
3  * * org.onap.aaf
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  * * 
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.auth.common;
23
24 import java.util.Map.Entry;
25
26 import org.onap.aaf.cadi.Access;
27 import org.onap.aaf.cadi.CadiException;
28 import org.onap.aaf.cadi.Access.Level;
29 import org.onap.aaf.cadi.config.Config;
30
31 public class Define {
32     private static String ROOT_NS = null;
33     private static String ROOT_COMPANY = null;
34     private static boolean initialized = false;
35
36     private final static String MSG = ".set(Access access) must be called before use";
37     public static final CharSequence ROOT_NS_TAG = "AAF_NS"; // use for certain Replacements in Location
38     private static final String ROOT_NS_TAG_DOT = ROOT_NS_TAG +".";
39
40     public static String ROOT_NS() {
41         if(ROOT_NS==null) {
42             throw new RuntimeException(Define.class.getName() + MSG);
43         }
44         return ROOT_NS;
45     }
46     
47     public static String ROOT_COMPANY() {
48         if(ROOT_NS==null) {
49             throw new RuntimeException(Define.class.getName() + MSG);
50         }
51         return ROOT_COMPANY;
52     }
53     
54     public static void set(Access access) throws CadiException {
55         ROOT_NS = access.getProperty(Config.AAF_ROOT_NS,"org.osaaf.aaf");
56         ROOT_COMPANY = access.getProperty(Config.AAF_ROOT_COMPANY,null);
57         if(ROOT_COMPANY==null) {
58             int last = ROOT_NS.lastIndexOf('.');
59             if(last>=0) {
60                 ROOT_COMPANY = ROOT_NS.substring(0, last);
61             } else {
62                 throw new CadiException(Config.AAF_ROOT_COMPANY + " or " + Config.AAF_ROOT_NS + " property with 3 positions is required.");
63             }
64         }
65         
66         for( Entry<Object, Object> es : access.getProperties().entrySet()) {
67             if(es.getKey().toString().startsWith(ROOT_NS_TAG_DOT)) {
68                 access.getProperties().setProperty(es.getKey().toString(),varReplace(es.getValue().toString()));
69             }
70         }
71
72         initialized = true;
73         access.printf(Level.INIT,"AAF Root NS is %s, and AAF Company Root is %s",ROOT_NS,ROOT_COMPANY);
74     }
75
76     public static String varReplace(final String potential) {
77         if(potential.startsWith(ROOT_NS_TAG_DOT)) {
78             return ROOT_NS + potential.substring(6);
79         } else {
80             return potential;
81         }
82     }
83
84     public static boolean isInitialized() {
85         return initialized;
86     }
87     
88 }