return manifest;
}
private void addPlainAttributesAndSections(DefaultManifest manifest) {
manifest.getAttributes().put(ARBITRARY_ATTRIBUTE, "I like green eggs and ham.");
Attributes sectionAtts = new DefaultAttributes();
sectionAtts.put(ANOTHER_ARBITRARY_ATTRIBUTE, "Death is the great equalizer.");
manifest.getSections().put(ARBITRARY_SECTION, sectionAtts);
}