[SDC] update configuration template in chef os
[sdc.git] / catalog-fe / 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 java.io.IOException;
24
25 import org.openecomp.sdc.common.api.BasicConfiguration;
26 import org.openecomp.sdc.common.api.ConfigurationListener;
27 import org.openecomp.sdc.common.api.ConfigurationSource;
28 import org.openecomp.sdc.common.api.FileChangeCallback;
29 import org.openecomp.sdc.common.impl.ConfigFileChangeListener;
30 import org.openecomp.sdc.common.impl.ExternalConfiguration;
31 import org.openecomp.sdc.common.impl.FSConfigurationSource;
32 import org.openecomp.sdc.fe.config.Configuration;
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
40                                 .setConfigDir("C:\\Users\\esofer\\workspaceLuna\\catalog-server\\src\\test\\resources\\config");
41                 ExternalConfiguration.listenForChanges();
42
43                 ConfigurationListener configurationListener = new ConfigurationListener(Configuration.class,
44                                 new FileChangeCallback() {
45
46                                         @Override
47                                         public void reconfigure(BasicConfiguration obj) {
48                                                 // TODO Auto-generated method stub
49
50                                         }
51                                 });
52
53                 ConfigurationSource configurationSource1 = new FSConfigurationSource(new ConfigFileChangeListener(),
54                                 ExternalConfiguration.getConfigDir());
55                 configurationSource1.getAndWatchConfiguration(Configuration.class, configurationListener);
56
57                 try {
58                         Thread.currentThread().sleep(100 * 1000);
59                 } catch (InterruptedException e) {
60                         e.printStackTrace();
61                 }
62
63         }
64
65 }