re base code
[sdc.git] / catalog-be / src / test / java / org / openecomp / sdc / TestExternalConfiguration.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 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 package org.openecomp.sdc;
22
23 import org.openecomp.sdc.be.config.Configuration;
24 import org.openecomp.sdc.common.api.BasicConfiguration;
25 import org.openecomp.sdc.common.api.ConfigurationListener;
26 import org.openecomp.sdc.common.api.ConfigurationSource;
27 import org.openecomp.sdc.common.api.FileChangeCallback;
28 import org.openecomp.sdc.common.impl.ConfigFileChangeListener;
29 import org.openecomp.sdc.common.impl.ExternalConfiguration;
30 import org.openecomp.sdc.common.impl.FSConfigurationSource;
31
32 import java.io.IOException;
33
34 public class TestExternalConfiguration<T extends Object> {
35
36     public static void main(String[] args) throws IOException {
37
38         ExternalConfiguration.setAppName("catalog-server");
39         ExternalConfiguration.setConfigDir("C:\\Users\\esofer\\workspaceLuna\\catalog-server\\src\\test\\resources\\config");
40         ExternalConfiguration.listenForChanges();
41
42         ConfigurationListener configurationListener = new ConfigurationListener(Configuration.class, new FileChangeCallback() {
43
44             @Override
45             public void reconfigure(BasicConfiguration obj) {
46                 // TODO Auto-generated method stub
47
48             }
49         });
50
51         ConfigurationSource configurationSource1 = new FSConfigurationSource(new ConfigFileChangeListener(), ExternalConfiguration.getConfigDir());
52         configurationSource1.getAndWatchConfiguration(Configuration.class, configurationListener);
53
54         try {
55             Thread.currentThread().sleep(100 * 1000);
56         } catch (InterruptedException e) {
57             e.printStackTrace();
58         }
59
60     }
61
62 }