Class DefaultBundleManifest
- java.lang.Object
-
- org.pentaho.reporting.libraries.docbundle.metadata.DefaultBundleManifest
-
- All Implemented Interfaces:
Serializable
,Cloneable
,BundleManifest
public class DefaultBundleManifest extends Object implements BundleManifest, Serializable, Cloneable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DefaultBundleManifest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addEntry(String fullPath, String mediaType)
Object
clone()
String
getAttribute(String entryName, String attributeName)
String[]
getAttributeNames(String entryName)
String[]
getEntries()
String
getMimeType(String entry)
boolean
removeEntry(String entry)
void
setAttribute(String entryName, String attributeName, String value)
-
-
-
Method Detail
-
getAttribute
public String getAttribute(String entryName, String attributeName)
- Specified by:
getAttribute
in interfaceBundleManifest
-
getMimeType
public String getMimeType(String entry)
- Specified by:
getMimeType
in interfaceBundleManifest
-
getEntries
public String[] getEntries()
- Specified by:
getEntries
in interfaceBundleManifest
-
removeEntry
public boolean removeEntry(String entry)
-
getAttributeNames
public String[] getAttributeNames(String entryName)
- Specified by:
getAttributeNames
in interfaceBundleManifest
-
clone
public Object clone() throws CloneNotSupportedException
- Overrides:
clone
in classObject
- Throws:
CloneNotSupportedException
-
-