Initial source code
[oam/tr069-adapter.git] / mapper / src / main / java / org / commscope / tr069adapter / mapper / MapperConfigProperties.java
1 /*\r
2  * ============LICENSE_START========================================================================\r
3  * ONAP : tr-069-adapter\r
4  * =================================================================================================\r
5  * Copyright (C) 2020 CommScope Inc Intellectual Property.\r
6  * =================================================================================================\r
7  * This tr-069-adapter software file is distributed by CommScope Inc under the Apache License,\r
8  * Version 2.0 (the "License"); you may not use this file except in compliance with the License. You\r
9  * may obtain a copy of the License at\r
10  *\r
11  * http://www.apache.org/licenses/LICENSE-2.0\r
12  *\r
13  * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,\r
14  * either express or implied. See the License for the specific language governing permissions and\r
15  * limitations under the License.\r
16  * ===============LICENSE_END=======================================================================\r
17  */\r
18 \r
19 package org.commscope.tr069adapter.mapper;\r
20 \r
21 import org.springframework.boot.context.properties.ConfigurationProperties;\r
22 import org.springframework.context.annotation.Configuration;\r
23 \r
24 @Configuration\r
25 @ConfigurationProperties(prefix = "config")\r
26 public class MapperConfigProperties {\r
27 \r
28   private String requesTimeout;\r
29 \r
30   private String preConfigureOnPNP;\r
31 \r
32   private String sbiUri;\r
33 \r
34   private String configDBUri;\r
35 \r
36   private String nbiNotificationUri;\r
37   private String nbiServerManagerUri;\r
38   private String vesUri;\r
39 \r
40   private String netConfServerIP;\r
41   private String netConfServerPort;\r
42 \r
43   private String alarmMORegex;\r
44 \r
45   public String getRequesTimeout() {\r
46     return requesTimeout;\r
47   }\r
48 \r
49   public void setRequesTimeout(String requesTimeout) {\r
50     this.requesTimeout = requesTimeout;\r
51   }\r
52 \r
53   public String getPreConfigureOnPNP() {\r
54     return preConfigureOnPNP;\r
55   }\r
56 \r
57   public void setPreConfigureOnPNP(String preConfigureOnPNP) {\r
58     this.preConfigureOnPNP = preConfigureOnPNP;\r
59   }\r
60 \r
61   public String getSbiUri() {\r
62     return sbiUri;\r
63   }\r
64 \r
65   public void setSbiUri(String sbiUri) {\r
66     this.sbiUri = sbiUri;\r
67   }\r
68 \r
69   public String getConfigDBUri() {\r
70     return configDBUri;\r
71   }\r
72 \r
73   public void setConfigDBUri(String configDBUri) {\r
74     this.configDBUri = configDBUri;\r
75   }\r
76 \r
77   public String getNbiNotificationUri() {\r
78     return nbiNotificationUri;\r
79   }\r
80 \r
81   public void setNbiNotificationUri(String nbiNotificationUri) {\r
82     this.nbiNotificationUri = nbiNotificationUri;\r
83   }\r
84 \r
85   public String getNbiServerManagerUri() {\r
86     return nbiServerManagerUri;\r
87   }\r
88 \r
89   public void setNbiServerManagerUri(String nbiServerManagerUri) {\r
90     this.nbiServerManagerUri = nbiServerManagerUri;\r
91   }\r
92 \r
93   public String getVesUri() {\r
94     return vesUri;\r
95   }\r
96 \r
97   public void setVesUri(String vesUri) {\r
98     this.vesUri = vesUri;\r
99   }\r
100 \r
101   public String getNetConfServerIP() {\r
102     return netConfServerIP;\r
103   }\r
104 \r
105   public void setNetConfServerIP(String netConfServerIP) {\r
106     this.netConfServerIP = netConfServerIP;\r
107   }\r
108 \r
109   public String getNetConfServerPort() {\r
110     return netConfServerPort;\r
111   }\r
112 \r
113   public void setNetConfServerPort(String netConfServerPort) {\r
114     this.netConfServerPort = netConfServerPort;\r
115   }\r
116 \r
117   public String getAlarmMORegex() {\r
118     return alarmMORegex;\r
119   }\r
120 \r
121   public void setAlarmMORegex(String alarmMORegex) {\r
122     this.alarmMORegex = alarmMORegex;\r
123   }\r
124 }\r