73fbc8c9a415672adacc2e6635f44caca8030d95
[aai/esr-server.git] / esr-mgr / src / main / java / org / onap / aai / esr / entity / aai / EsrVnfm.java
1 /**
2  * Copyright 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.aai;
17
18 import java.io.Serializable;
19
20 import com.google.gson.annotations.SerializedName;
21
22 public class EsrVnfm implements Serializable {
23
24   public static final long serialVersionUID = 1L;
25   
26   @SerializedName("vnfm-id")
27   private String vnfmId;
28   
29   @SerializedName("vim-id")
30   private String vimId;
31   
32   @SerializedName("certificate-id")
33   private String certificateUrl;
34   
35   @SerializedName("resource-version")
36   private String resourceVersion;
37
38   public String getVnfmId() {
39     return vnfmId;
40   }
41
42   public void setVnfmId(String vnfmId) {
43     this.vnfmId = vnfmId;
44   }
45
46   public String getVimId() {
47     return vimId;
48   }
49
50   public void setVimId(String vimId) {
51     this.vimId = vimId;
52   }
53
54   public String getCertificateUrl() {
55     return certificateUrl;
56   }
57
58   public void setCertificateUrl(String certificateUrl) {
59     this.certificateUrl = certificateUrl;
60   }
61
62   public String getResourceVersion() {
63     return resourceVersion;
64   }
65
66   public void setResourceVersion(String resourceVersion) {
67     this.resourceVersion = resourceVersion;
68   }
69
70   public static long getSerialversionuid() {
71     return serialVersionUID;
72   }
73 }