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