org.pentaho.reporting.libraries.repository.zip
Class ZipRepository
java.lang.Object
org.pentaho.reporting.libraries.repository.zip.ZipRepository
- All Implemented Interfaces:
- Repository
public class ZipRepository
- extends java.lang.Object
- implements Repository
A read-write repository based on ZIP streams. The repository can be created using a existing
zip file as initial content. The repository will be fully buffered, so nothing is written until
the whole repository is closed. For a streaming solution use the zipwriter-repository instead.
- Author:
- Thomas Morgner
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
ZipRepository
public ZipRepository()
ZipRepository
public ZipRepository(MimeRegistry mimeRegistry)
ZipRepository
public ZipRepository(java.io.InputStream in)
throws java.io.IOException
- Throws:
java.io.IOException
ZipRepository
public ZipRepository(java.io.InputStream in,
MimeRegistry mimeRegistry)
throws java.io.IOException
- Throws:
java.io.IOException
getRoot
public ContentLocation getRoot()
throws ContentIOException
- Description copied from interface:
Repository
- Returns the repositories root directory entry.
- Specified by:
getRoot
in interface Repository
- Returns:
- the root directory.
- Throws:
ContentIOException
- if an error occurs.
getMimeRegistry
public MimeRegistry getMimeRegistry()
- Description copied from interface:
Repository
- Returns the repositories MimeRegistry, which is used return basic content-type information about the items stored
in this repository.
- Specified by:
getMimeRegistry
in interface Repository
- Returns:
- the mime registry.
- See Also:
MimeRegistry
write
public void write(java.io.OutputStream outputStream)
throws java.io.IOException,
ContentIOException
- Throws:
java.io.IOException
ContentIOException
writeToZipStream
public void writeToZipStream(java.util.zip.ZipOutputStream zipOutputStream,
Repository repository)
throws java.io.IOException,
ContentIOException
- Throws:
java.io.IOException
ContentIOException