Development of NETCONF RPCs for tr-069 adapter to
[oam/tr069-adapter.git] / acs / common / src / main / java / org / commscope / tr069adapter / acs / common / dto / TR069DeviceDetails.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.acs.common.dto;
20
21 import org.commscope.tr069adapter.acs.common.DeviceDetails;
22
23 public class TR069DeviceDetails extends DeviceDetails {
24
25   private static final long serialVersionUID = 8067939584181214835L;
26
27   // Device credentials
28   private String username;
29   private String password;
30
31   // Device connection request URL
32   private String connectionRequestURL;
33   private int crRetryCount;
34
35   public String getUsername() {
36     return username;
37   }
38
39   public void setUsername(String username) {
40     this.username = username;
41   }
42
43   public String getPassword() {
44     return password;
45   }
46
47   public void setPassword(String password) {
48     this.password = password;
49   }
50
51   public String getConnectionRequestURL() {
52     return connectionRequestURL;
53   }
54
55   public void setConnectionRequestURL(String connectionRequestURL) {
56     this.connectionRequestURL = connectionRequestURL;
57   }
58
59   public int getCrRetryCount() {
60     return crRetryCount;
61   }
62
63   public void setCrRetryCount(int crRetryCount) {
64     this.crRetryCount = crRetryCount;
65   }
66
67 }