95b871a60eca72c99de7f312bbadc045416c0eae
[oam/tr069-adapter.git] / ves-agent / src / main / java / org / commscope / tr069adapter / vesagent / model / PnfRegEventAdditionalFeilds.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.vesagent.model;\r
20 \r
21 import com.fasterxml.jackson.annotation.JsonInclude;\r
22 import com.fasterxml.jackson.annotation.JsonProperty;\r
23 \r
24 import java.io.Serializable;\r
25 \r
26 @JsonInclude(JsonInclude.Include.NON_NULL)\r
27 public class PnfRegEventAdditionalFeilds implements Serializable {\r
28   /**\r
29    * \r
30    */\r
31   private static final long serialVersionUID = 5368863118681551950L;\r
32   private String oamPort;\r
33   private String protocol;\r
34   private String username;\r
35   private String password;\r
36   private String reconnectOnChangedSchema;\r
37   @JsonProperty("sleep-factor")\r
38   private String sleepfactor;\r
39   private String tcpOnly;\r
40   private String connectionTimeout;\r
41   private String maxConnectionAttempts;\r
42   private String betweenAttemptsTimeout;\r
43   private String keepaliveDelay;\r
44 \r
45   public String getOamPort() {\r
46     return oamPort;\r
47   }\r
48 \r
49   public void setOamPort(String oamPort) {\r
50     this.oamPort = oamPort;\r
51   }\r
52 \r
53   public String getProtocol() {\r
54     return protocol;\r
55   }\r
56 \r
57   public void setProtocol(String protocol) {\r
58     this.protocol = protocol;\r
59   }\r
60 \r
61   public String getUsername() {\r
62     return username;\r
63   }\r
64 \r
65   public void setUsername(String username) {\r
66     this.username = username;\r
67   }\r
68 \r
69   public String getPassword() {\r
70     return password;\r
71   }\r
72 \r
73   public void setPassword(String password) {\r
74     this.password = password;\r
75   }\r
76 \r
77   public String getReconnectOnChangedSchema() {\r
78     return reconnectOnChangedSchema;\r
79   }\r
80 \r
81   public void setReconnectOnChangedSchema(String reconnectOnChangedSchema) {\r
82     this.reconnectOnChangedSchema = reconnectOnChangedSchema;\r
83   }\r
84 \r
85   public String getSleepfactor() {\r
86     return sleepfactor;\r
87   }\r
88 \r
89   public void setSleepfactor(String sleepfactor) {\r
90     this.sleepfactor = sleepfactor;\r
91   }\r
92 \r
93   public String getTcpOnly() {\r
94     return tcpOnly;\r
95   }\r
96 \r
97   public void setTcpOnly(String tcpOnly) {\r
98     this.tcpOnly = tcpOnly;\r
99   }\r
100 \r
101   public String getConnectionTimeout() {\r
102     return connectionTimeout;\r
103   }\r
104 \r
105   public void setConnectionTimeout(String connectionTimeout) {\r
106     this.connectionTimeout = connectionTimeout;\r
107   }\r
108 \r
109   public String getMaxConnectionAttempts() {\r
110     return maxConnectionAttempts;\r
111   }\r
112 \r
113   public void setMaxConnectionAttempts(String maxConnectionAttempts) {\r
114     this.maxConnectionAttempts = maxConnectionAttempts;\r
115   }\r
116 \r
117   public String getBetweenAttemptsTimeout() {\r
118     return betweenAttemptsTimeout;\r
119   }\r
120 \r
121   public void setBetweenAttemptsTimeout(String betweenAttemptsTimeout) {\r
122     this.betweenAttemptsTimeout = betweenAttemptsTimeout;\r
123   }\r
124 \r
125   public String getKeepaliveDelay() {\r
126     return keepaliveDelay;\r
127   }\r
128 \r
129   public void setKeepaliveDelay(String keepaliveDelay) {\r
130     this.keepaliveDelay = keepaliveDelay;\r
131   }\r
132 }\r