Network topology and inventory init
[transportpce.git] / inventory / src / main / java / org / opendaylight / transportpce / inventory / dto / InvDevInfo.java
1 /*
2  * Copyright © 2017 AT&T and others. All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.transportpce.inventory.dto;
10
11 public class InvDevInfo {
12     private String nodeId;
13     private String nodeNumber;
14     private String nodeType;
15     private String clli;
16     private String vendor;
17     private String model;
18     private String serialId;
19     private String ipAddress;
20     private String prefixLength;
21     private String defaultGateway;
22     private String source;
23     private String currentIpAddress;
24     private String currentPrefixLength;
25     private String currentDefaultGateway;
26     private String macAddress;
27     private String softwareVersion;
28     private String template;
29     private String currentDatetime;
30     private String latitude;
31     private String longitude;
32     private String maxDegrees;
33     private String maxSrgs;
34     private String swVersion;
35     private String swValidationTimer;
36     private String activationDateTime;
37     private String createDate;
38     private String updateDate;
39
40
41     public String getNodeId() {
42         return this.nodeId;
43     }
44
45     public void setNode_id(String nodeId) {
46         this.nodeId = nodeId;
47     }
48
49     public String getNode_number() {
50         return this.nodeNumber;
51     }
52
53     public void setNode_number(String nodeNumber) {
54         this.nodeNumber = nodeNumber;
55     }
56
57     public String getNode_type() {
58         return this.nodeType;
59     }
60
61     public void setNode_type(String nodeType) {
62         this.nodeType = nodeType;
63     }
64
65     public String getClli() {
66         return this.clli;
67     }
68
69     public void setClli(String clli) {
70         this.clli = clli;
71     }
72
73     public String getVendor() {
74         return this.vendor;
75     }
76
77     public void setVendor(String vendor) {
78         this.vendor = vendor;
79     }
80
81     public String getModel() {
82         return this.model;
83     }
84
85     public void setModel(String model) {
86         this.model = model;
87     }
88
89     public String getSerial_id() {
90         return this.serialId;
91     }
92
93     public void setSerial_id(String serialId) {
94         this.serialId = serialId;
95     }
96
97     public String getIpAddress() {
98         return this.ipAddress;
99     }
100
101     public void setIpAddress(String ipAddress) {
102         this.ipAddress = ipAddress;
103     }
104
105     public String getPrefix_length() {
106         return this.prefixLength;
107     }
108
109     public void setPrefix_length(String prefixLength) {
110         this.prefixLength = prefixLength;
111     }
112
113     public String getDefault_gateway() {
114         return this.defaultGateway;
115     }
116
117     public void setDefault_gateway(String defaultGateway) {
118         this.defaultGateway = defaultGateway;
119     }
120
121     public String getSource() {
122         return this.source;
123     }
124
125     public void setSource(String source) {
126         this.source = source;
127     }
128
129     public String getCurrent_ipAddress() {
130         return this.currentIpAddress;
131     }
132
133     public void setCurrent_ipAddress(String currentIpAddress) {
134         this.currentIpAddress = currentIpAddress;
135     }
136
137     public String getCurrent_prefix_length() {
138         return this.currentPrefixLength;
139     }
140
141     public void setCurrent_prefix_length(String currentPrefixLength) {
142         this.currentPrefixLength = currentPrefixLength;
143     }
144
145     public String getCurrent_default_gateway() {
146         return this.currentDefaultGateway;
147     }
148
149     public void setCurrent_default_gateway(String currentDefaultGateway) {
150         this.currentDefaultGateway = currentDefaultGateway;
151     }
152
153     public String getMacAddress() {
154         return this.macAddress;
155     }
156
157     public void setMacAddress(String macAddress) {
158         this.macAddress = macAddress;
159     }
160
161     public String getSoftware_version() {
162         return this.softwareVersion;
163     }
164
165     public void setSoftware_version(String softwareVersion) {
166         this.softwareVersion = softwareVersion;
167     }
168
169     public String getTemplate() {
170         return this.template;
171     }
172
173     public void setTemplate(String template) {
174         this.template = template;
175     }
176
177     public String getCurrent_datetime() {
178         return this.currentDatetime;
179     }
180
181     public void setCurrent_datetime(String currentDatetime) {
182         this.currentDatetime = currentDatetime;
183     }
184
185     public String getLatitude() {
186         return this.latitude;
187     }
188
189     public void setLatitude(String latitude) {
190         this.latitude = latitude;
191     }
192
193     public String getLongitude() {
194         return this.longitude;
195     }
196
197     public void setLongitude(String longitude) {
198         this.longitude = longitude;
199     }
200
201     public String getMax_degrees() {
202         return this.maxDegrees;
203     }
204
205     public void setMax_degrees(String maxDegrees) {
206         this.maxDegrees = maxDegrees;
207     }
208
209     public String getMax_srgs() {
210         return this.maxSrgs;
211     }
212
213     public void setMax_srgs(String maxSrgs) {
214         this.maxSrgs = maxSrgs;
215     }
216
217     public String getSw_version() {
218         return this.swVersion;
219     }
220
221     public void setSw_version(String swVersion) {
222         this.swVersion = swVersion;
223     }
224
225     public String getSw_validation_timer() {
226         return this.swValidationTimer;
227     }
228
229     public void setSw_validation_timer(String swValidationTimer) {
230         this.swValidationTimer = swValidationTimer;
231     }
232
233     public String getActivation_date_time() {
234         return this.activationDateTime;
235     }
236
237     public void setActivation_date_time(String activationDateTime) {
238         this.activationDateTime = activationDateTime;
239     }
240
241     public String getCreate_date() {
242         return this.createDate;
243     }
244
245     public void setCreate_date(String createDate) {
246         this.createDate = createDate;
247     }
248
249     public String getUpdate_date() {
250         return this.updateDate;
251     }
252
253     public void setUpdate_date(String updateDate) {
254         this.updateDate = updateDate;
255     }
256 }