Package org.apache.maven.archiver
Class ManifestSection
- java.lang.Object
-
- org.apache.maven.archiver.ManifestSection
-
public class ManifestSection extends Object
-
-
Constructor Summary
Constructors Constructor Description ManifestSection()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddManifestEntries(Map<String,String> map)voidaddManifestEntry(String key, String value)Map<String,String>getManifestEntries()StringgetName()booleanisManifestEntriesEmpty()voidsetName(String name)
-
-
-
Method Detail
-
addManifestEntry
public void addManifestEntry(String key, String value)
- Parameters:
key- The key of the manifest entry.value- The appropriate value.
-
getName
public String getName()
- Returns:
- The name.
-
setName
public void setName(String name)
- Parameters:
name- the name.
-
addManifestEntries
public void addManifestEntries(Map<String,String> map)
- Parameters:
map- The map to add.
-
isManifestEntriesEmpty
public boolean isManifestEntriesEmpty()
- Returns:
- true if empty false otherwise.
-
-