Create seed code of svnfm vnfmdriver
[vfc/nfvo/driver/vnfm/svnfm.git] / nokia / vnfmdriver / vfcadaptorservice / vfcadaptor / src / main / java / com / nokia / vfcadaptor / nslcm / bo / entity / GrantInfo.java
1 /*
2  * Copyright 2016-2017, Nokia 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 com.nokia.vfcadaptor.nslcm.bo.entity;
17
18 import com.fasterxml.jackson.annotation.JsonProperty;
19
20 public class GrantInfo {
21   
22         @JsonProperty("resourceDefinitionId")
23         private String resourceDefinitionId;
24         
25         @JsonProperty("reservationId")
26         private String reservationId;
27         
28         @JsonProperty("vimId")
29         private String vimId;
30
31         @JsonProperty("resourceProviderId")
32         private String resourceProviderId;
33         
34         @JsonProperty("zoneId")
35         private String zoneId;
36
37         public String getResourceDefinitionId() {
38                 return resourceDefinitionId;
39         }
40
41         public void setResourceDefinitionId(String resourceDefinitionId) {
42                 this.resourceDefinitionId = resourceDefinitionId;
43         }
44
45         public String getReservationId() {
46                 return reservationId;
47         }
48
49         public void setReservationId(String reservationId) {
50                 this.reservationId = reservationId;
51         }
52
53         public String getVimId() {
54                 return vimId;
55         }
56
57         public void setVimId(String vimId) {
58                 this.vimId = vimId;
59         }
60
61         public String getResourceProviderId() {
62                 return resourceProviderId;
63         }
64
65         public void setResourceProviderId(String resourceProviderId) {
66                 this.resourceProviderId = resourceProviderId;
67         }
68
69         public String getZoneId() {
70                 return zoneId;
71         }
72
73         public void setZoneId(String zoneId) {
74                 this.zoneId = zoneId;
75         }
76         
77         
78         
79         
80         
81         
82         
83 }