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