package org.onap.dcae.dmaapbc.dbcapp.domain; import java.util.Map; /** * Holds a set of String key-value pairs, the JSON version of a * java.util.Attributes object read from a jar/war file. */ public class ManifestTransportModel { private Map manifest; /** * Standard POJO no-arg constructor */ public ManifestTransportModel() { } public Map getManifest() { return manifest; } public void setManifest(Map manifest) { this.manifest = manifest; } @Override public String toString() { return "Manifest[size=" + manifest.size() + "]"; } }