98edf1129a1f7ac0136d29bc01ebd64c509b5bc0
[vfc/nfvo/catalog.git] /
1 /**
2  * Copyright 2016 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.openo.commontosca.catalog.model.externalservice.entity.ro;
17
18 public class VimEntity {
19   private String oid;
20   private String name;
21   private String user;
22   private String url;
23   private String userName;
24   private String password;
25
26   public String getOid() {
27     return oid;
28   }
29
30   public void setOid(String oid) {
31     this.oid = oid;
32   }
33
34   public String getName() {
35     return name;
36   }
37
38   public void setName(String name) {
39     this.name = name;
40   }
41
42   public String getUser() {
43     return user;
44   }
45
46   public void setUser(String user) {
47     this.user = user;
48   }
49
50   public String getUrl() {
51     return url;
52   }
53
54   public void setUrl(String url) {
55     this.url = url;
56   }
57
58   public String getUserName() {
59     return userName;
60   }
61
62   public void setUserName(String userName) {
63     this.userName = userName;
64   }
65
66   public String getPassword() {
67     return password;
68   }
69
70   public void setPassword(String password) {
71     this.password = password;
72   }
73
74 }