667f0cfe2b101d6e1568b7e0d9a86b3dc7e210dd
[aai/esr-server.git] / esr-mgr / src / main / java / org / onap / aai / esr / entity / rest / ThirdpartySdncRegisterInfo.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 public class ThirdpartySdncRegisterInfo {
19
20   private String thirdpartySdncId;
21   
22   private String name;
23   
24   private String vendor;
25   
26   private String version;
27   
28   private String type;
29   
30   private String location;
31   
32   private String url;
33   
34   private String userName;
35   
36   private String password;
37   
38   private String productName;
39   
40   private String protocol;
41
42
43   public String getUrl() {
44     return url;
45   }
46
47   public void setUrl(String url) {
48     this.url = url;
49   }
50
51   public String getUserName() {
52     return userName;
53   }
54
55   public void setUserName(String userName) {
56     this.userName = userName;
57   }
58
59   public String getPassword() {
60     return password;
61   }
62
63   public void setPassword(String password) {
64     this.password = password;
65   }
66
67   public String getProductName() {
68     return productName;
69   }
70
71   public void setProductName(String productName) {
72     this.productName = productName;
73   }
74
75   public String getProtocol() {
76     return protocol;
77   }
78
79   public void setProtocol(String protocol) {
80     this.protocol = protocol;
81   }
82   
83   public ThirdpartySdncRegisterInfo() {
84
85   }
86
87   public String getThirdpartySdncId() {
88     return thirdpartySdncId;
89   }
90
91   public void setThirdpartySdncId(String thirdpartySdncId) {
92     this.thirdpartySdncId = thirdpartySdncId;
93   }
94
95   public String getName() {
96     return name;
97   }
98
99   public void setName(String name) {
100     this.name = name;
101   }
102
103   public String getVendor() {
104     return vendor;
105   }
106
107   public void setVendor(String vendor) {
108     this.vendor = vendor;
109   }
110
111   public String getVersion() {
112     return version;
113   }
114
115   public void setVersion(String version) {
116     this.version = version;
117   }
118
119   public String getType() {
120     return type;
121   }
122
123   public void setType(String type) {
124     this.type = type;
125   }
126
127   public String getLocation() {
128     return location;
129   }
130
131   public void setLocation(String location) {
132     this.location = location;
133   }
134 }