a98f14de863d9ea5908d5f18b2e5ad38fc10591e
[ui/dmaapbc.git] /
1 package org.openecomp.dcae.dmaapbc.dbcapp.domain;
2
3 import java.util.Map;
4
5 /**
6  * Holds a set of String key-value pairs, the JSON version of a
7  * java.util.Attributes object read from a jar/war file.
8  */
9 public class ManifestTransportModel {
10
11         private Map<String, String> manifest;
12
13         /**
14          * Standard POJO no-arg constructor
15          */
16         public ManifestTransportModel() {
17         }
18
19         public Map<String, String> getManifest() {
20                 return manifest;
21         }
22
23         public void setManifest(Map<String, String> manifest) {
24                 this.manifest = manifest;
25         }
26
27         @Override
28         public String toString() {
29                 return "Manifest[size=" + manifest.size() + "]";
30         }
31
32 }