Initial source code
[oam/tr069-adapter.git] / ves-agent / src / main / java / org / commscope / tr069adapter / vesagent / model / PnfRegEventAdditionalFeilds.java
diff --git a/ves-agent/src/main/java/org/commscope/tr069adapter/vesagent/model/PnfRegEventAdditionalFeilds.java b/ves-agent/src/main/java/org/commscope/tr069adapter/vesagent/model/PnfRegEventAdditionalFeilds.java
new file mode 100644 (file)
index 0000000..95b871a
--- /dev/null
@@ -0,0 +1,132 @@
+/*\r
+ * ============LICENSE_START========================================================================\r
+ * ONAP : tr-069-adapter\r
+ * =================================================================================================\r
+ * Copyright (C) 2020 CommScope Inc Intellectual Property.\r
+ * =================================================================================================\r
+ * This tr-069-adapter software file is distributed by CommScope Inc under the Apache License,\r
+ * Version 2.0 (the "License"); you may not use this file except in compliance with the License. You\r
+ * may obtain a copy of the License at\r
+ *\r
+ * http://www.apache.org/licenses/LICENSE-2.0\r
+ *\r
+ * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,\r
+ * either express or implied. See the License for the specific language governing permissions and\r
+ * limitations under the License.\r
+ * ===============LICENSE_END=======================================================================\r
+ */\r
+\r
+package org.commscope.tr069adapter.vesagent.model;\r
+\r
+import com.fasterxml.jackson.annotation.JsonInclude;\r
+import com.fasterxml.jackson.annotation.JsonProperty;\r
+\r
+import java.io.Serializable;\r
+\r
+@JsonInclude(JsonInclude.Include.NON_NULL)\r
+public class PnfRegEventAdditionalFeilds implements Serializable {\r
+  /**\r
+   * \r
+   */\r
+  private static final long serialVersionUID = 5368863118681551950L;\r
+  private String oamPort;\r
+  private String protocol;\r
+  private String username;\r
+  private String password;\r
+  private String reconnectOnChangedSchema;\r
+  @JsonProperty("sleep-factor")\r
+  private String sleepfactor;\r
+  private String tcpOnly;\r
+  private String connectionTimeout;\r
+  private String maxConnectionAttempts;\r
+  private String betweenAttemptsTimeout;\r
+  private String keepaliveDelay;\r
+\r
+  public String getOamPort() {\r
+    return oamPort;\r
+  }\r
+\r
+  public void setOamPort(String oamPort) {\r
+    this.oamPort = oamPort;\r
+  }\r
+\r
+  public String getProtocol() {\r
+    return protocol;\r
+  }\r
+\r
+  public void setProtocol(String protocol) {\r
+    this.protocol = protocol;\r
+  }\r
+\r
+  public String getUsername() {\r
+    return username;\r
+  }\r
+\r
+  public void setUsername(String username) {\r
+    this.username = username;\r
+  }\r
+\r
+  public String getPassword() {\r
+    return password;\r
+  }\r
+\r
+  public void setPassword(String password) {\r
+    this.password = password;\r
+  }\r
+\r
+  public String getReconnectOnChangedSchema() {\r
+    return reconnectOnChangedSchema;\r
+  }\r
+\r
+  public void setReconnectOnChangedSchema(String reconnectOnChangedSchema) {\r
+    this.reconnectOnChangedSchema = reconnectOnChangedSchema;\r
+  }\r
+\r
+  public String getSleepfactor() {\r
+    return sleepfactor;\r
+  }\r
+\r
+  public void setSleepfactor(String sleepfactor) {\r
+    this.sleepfactor = sleepfactor;\r
+  }\r
+\r
+  public String getTcpOnly() {\r
+    return tcpOnly;\r
+  }\r
+\r
+  public void setTcpOnly(String tcpOnly) {\r
+    this.tcpOnly = tcpOnly;\r
+  }\r
+\r
+  public String getConnectionTimeout() {\r
+    return connectionTimeout;\r
+  }\r
+\r
+  public void setConnectionTimeout(String connectionTimeout) {\r
+    this.connectionTimeout = connectionTimeout;\r
+  }\r
+\r
+  public String getMaxConnectionAttempts() {\r
+    return maxConnectionAttempts;\r
+  }\r
+\r
+  public void setMaxConnectionAttempts(String maxConnectionAttempts) {\r
+    this.maxConnectionAttempts = maxConnectionAttempts;\r
+  }\r
+\r
+  public String getBetweenAttemptsTimeout() {\r
+    return betweenAttemptsTimeout;\r
+  }\r
+\r
+  public void setBetweenAttemptsTimeout(String betweenAttemptsTimeout) {\r
+    this.betweenAttemptsTimeout = betweenAttemptsTimeout;\r
+  }\r
+\r
+  public String getKeepaliveDelay() {\r
+    return keepaliveDelay;\r
+  }\r
+\r
+  public void setKeepaliveDelay(String keepaliveDelay) {\r
+    this.keepaliveDelay = keepaliveDelay;\r
+  }\r
+}\r