beb60f8767152d0fefd0b14d9f90af64d57e2e84
[sdc.git] /
1 package org.openecomp.sdc.vendorsoftwareproduct.types.composition;
2
3 public class ImageData implements CompositionDataEntity {
4
5   private String fileName;
6   private String description;
7
8   public ImageData(){
9
10   }
11
12   public ImageData(String fileName, String description) {
13     this.fileName = fileName;
14     this.description = description;
15   }
16
17   public String getFileName() {
18     return fileName;
19   }
20
21   public void setFileName(String fileName) {
22     this.fileName = fileName;
23   }
24
25   public String getDescription() {
26     return description;
27   }
28
29   public void setDescription(String description) {
30     this.description = description;
31   }
32 }