Create seed code of svnfm vnfmdriver
[vfc/nfvo/driver/vnfm/svnfm.git] / nokia / vnfmdriver / vfcadaptorservice / vfcadaptor / src / main / java / com / nokia / vfcadaptor / catalog / bo / entity / ImageInfo.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.catalog.bo.entity;
17
18 import com.fasterxml.jackson.annotation.JsonProperty;
19
20 public class ImageInfo {
21         
22         @JsonProperty("index")
23         private String index;
24         
25         @JsonProperty("fileName")
26         private String fileName;
27         
28         @JsonProperty("imageId")
29         private String imageId;
30         
31         @JsonProperty("vimId")
32         private String vimId;
33         
34         @JsonProperty("vimUser")
35         private String vimUser;
36         
37         @JsonProperty("tenant")
38         private String tenant;
39         
40         @JsonProperty("status")
41         private String status;
42
43         public String getIndex() {
44                 return index;
45         }
46
47         public void setIndex(String index) {
48                 this.index = index;
49         }
50
51         public String getFileName() {
52                 return fileName;
53         }
54
55         public void setFileName(String fileName) {
56                 this.fileName = fileName;
57         }
58
59         public String getImageId() {
60                 return imageId;
61         }
62
63         public void setImageId(String imageId) {
64                 this.imageId = imageId;
65         }
66
67         public String getVimId() {
68                 return vimId;
69         }
70
71         public void setVimId(String vimId) {
72                 this.vimId = vimId;
73         }
74
75         public String getVimUser() {
76                 return vimUser;
77         }
78
79         public void setVimUser(String vimUser) {
80                 this.vimUser = vimUser;
81         }
82
83         public String getTenant() {
84                 return tenant;
85         }
86
87         public void setTenant(String tenant) {
88                 this.tenant = tenant;
89         }
90
91         public String getStatus() {
92                 return status;
93         }
94
95         public void setStatus(String status) {
96                 this.status = status;
97         }
98         
99         
100         
101         
102         
103
104 }