All Downloads are FREE. Search and download functionalities are using the official Maven repository.

global.namespace.archive.io.commons.compress.ZipArchiveEntrySink Maven / Gradle / Ivy

There is a newer version: 0.10.0
Show newest version
/*
 * Copyright (C) 2013-2018 Schlichtherle IT Services.
 * All rights reserved. Use is subject to license terms.
 */
package global.namespace.archive.io.commons.compress;

import global.namespace.archive.io.api.ArchiveEntrySink;
import org.apache.commons.compress.archivers.zip.ZipArchiveEntry;

/**
 * Supports writing the content of an underlying ZIP archive entry.
 *
 * @author Christian Schlichtherle
 */
abstract class ZipArchiveEntrySink extends ArchiveEntrySink {

    abstract void copyFrom(ZipArchiveEntrySource source) throws Exception;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy