Define AAI Vim register related API
[aai/esr-server.git] / esr-core / esr-mgr / src / main / java / org / onap / aai / esr / entity / rest / BaseRestData.java
1 /**
2  * Copyright 2016-2017 ZTE Corporation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.onap.aai.esr.entity.rest;
17
18
19 public class BaseRestData {
20
21   private String instanceId;
22
23   private String systemName;
24
25   private String vendor;
26
27   private String version;
28
29   private String type;
30   
31   private String url;
32   
33   private String username;
34   
35   private String password;
36   
37   private String systemStatus;
38
39   private String systemType;
40
41   public String getInstanceId() {
42     return instanceId;
43   }
44
45   public void setInstanceId(String instanceId) {
46     this.instanceId = instanceId;
47   }
48
49   public String getSystemName() {
50     return systemName;
51   }
52
53   public void setSystemName(String systemName) {
54     this.systemName = systemName;
55   }
56
57   public String getVendor() {
58     return vendor;
59   }
60
61   public void setVendor(String vendor) {
62     this.vendor = vendor;
63   }
64
65   public String getVersion() {
66     return version;
67   }
68
69   public void setVersion(String version) {
70     this.version = version;
71   }
72
73   public String getType() {
74     return type;
75   }
76
77   public void setType(String type) {
78     this.type = type;
79   }
80
81   public String getUrl() {
82     return url;
83   }
84
85   public void setUrl(String url) {
86     this.url = url;
87   }
88
89   public String getUsername() {
90     return username;
91   }
92
93   public void setUsername(String username) {
94     this.username = username;
95   }
96
97   public String getPassword() {
98     return password;
99   }
100
101   public void setPassword(String password) {
102     this.password = password;
103   }
104
105   public String getSystemStatus() {
106     return systemStatus;
107   }
108
109   public void setSystemStatus(String systemStatus) {
110     this.systemStatus = systemStatus;
111   }
112
113   public String getSystemType() {
114     return systemType;
115   }
116
117   public void setSystemType(String systemType) {
118     this.systemType = systemType;
119   }
120
121
122 }