Merge "VES Heartbeat and Software Management Feature"
[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   private String verConfigUri;\r
46 \r
47   public String getRequesTimeout() {\r
48     return requesTimeout;\r
49   }\r
50 \r
51   public void setRequesTimeout(String requesTimeout) {\r
52     this.requesTimeout = requesTimeout;\r
53   }\r
54 \r
55   public String getPreConfigureOnPNP() {\r
56     return preConfigureOnPNP;\r
57   }\r
58 \r
59   public void setPreConfigureOnPNP(String preConfigureOnPNP) {\r
60     this.preConfigureOnPNP = preConfigureOnPNP;\r
61   }\r
62 \r
63   public String getSbiUri() {\r
64     return sbiUri;\r
65   }\r
66 \r
67   public void setSbiUri(String sbiUri) {\r
68     this.sbiUri = sbiUri;\r
69   }\r
70 \r
71   public String getConfigDBUri() {\r
72     return configDBUri;\r
73   }\r
74 \r
75   public void setConfigDBUri(String configDBUri) {\r
76     this.configDBUri = configDBUri;\r
77   }\r
78 \r
79   public String getNbiNotificationUri() {\r
80     return nbiNotificationUri;\r
81   }\r
82 \r
83   public void setNbiNotificationUri(String nbiNotificationUri) {\r
84     this.nbiNotificationUri = nbiNotificationUri;\r
85   }\r
86 \r
87   public String getNbiServerManagerUri() {\r
88     return nbiServerManagerUri;\r
89   }\r
90 \r
91   public void setNbiServerManagerUri(String nbiServerManagerUri) {\r
92     this.nbiServerManagerUri = nbiServerManagerUri;\r
93   }\r
94 \r
95   public String getVesUri() {\r
96     return vesUri;\r
97   }\r
98 \r
99   public void setVesUri(String vesUri) {\r
100     this.vesUri = vesUri;\r
101   }\r
102 \r
103   public String getNetConfServerIP() {\r
104     return netConfServerIP;\r
105   }\r
106 \r
107   public void setNetConfServerIP(String netConfServerIP) {\r
108     this.netConfServerIP = netConfServerIP;\r
109   }\r
110 \r
111   public String getNetConfServerPort() {\r
112     return netConfServerPort;\r
113   }\r
114 \r
115   public void setNetConfServerPort(String netConfServerPort) {\r
116     this.netConfServerPort = netConfServerPort;\r
117   }\r
118 \r
119   public String getAlarmMORegex() {\r
120     return alarmMORegex;\r
121   }\r
122 \r
123   public void setAlarmMORegex(String alarmMORegex) {\r
124     this.alarmMORegex = alarmMORegex;\r
125   }\r
126 \r
127   public String getVerConfigUri() {\r
128     return verConfigUri;\r
129   }\r
130 \r
131   public void setVerConfigUri(String verConfigUri) {\r
132     this.verConfigUri = verConfigUri;\r
133   }\r
134 \r
135 }\r