2  * Copyright 2016-2017, Nokia Corporation
 
   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
 
   8  *     http://www.apache.org/licenses/LICENSE-2.0
 
  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.
 
  16 package com.nokia.vfcadaptor.catalog.bo.entity;
 
  18 import com.fasterxml.jackson.annotation.JsonProperty;
 
  20 public class ImageInfo {
 
  22         @JsonProperty("index")
 
  25         @JsonProperty("fileName")
 
  26         private String fileName;
 
  28         @JsonProperty("imageId")
 
  29         private String imageId;
 
  31         @JsonProperty("vimId")
 
  34         @JsonProperty("vimUser")
 
  35         private String vimUser;
 
  37         @JsonProperty("tenant")
 
  38         private String tenant;
 
  40         @JsonProperty("status")
 
  41         private String status;
 
  43         public String getIndex() {
 
  47         public void setIndex(String index) {
 
  51         public String getFileName() {
 
  55         public void setFileName(String fileName) {
 
  56                 this.fileName = fileName;
 
  59         public String getImageId() {
 
  63         public void setImageId(String imageId) {
 
  64                 this.imageId = imageId;
 
  67         public String getVimId() {
 
  71         public void setVimId(String vimId) {
 
  75         public String getVimUser() {
 
  79         public void setVimUser(String vimUser) {
 
  80                 this.vimUser = vimUser;
 
  83         public String getTenant() {
 
  87         public void setTenant(String tenant) {
 
  91         public String getStatus() {
 
  95         public void setStatus(String status) {