1 package org.openecomp.dcae.dmaapbc.dbcapp.domain;
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.
9 public class ManifestTransportModel {
11 private Map<String, String> manifest;
14 * Standard POJO no-arg constructor
16 public ManifestTransportModel() {
19 public Map<String, String> getManifest() {
23 public void setManifest(Map<String, String> manifest) {
24 this.manifest = manifest;
28 public String toString() {
29 return "Manifest[size=" + manifest.size() + "]";