com.sap.cloud.security.ams.dcl.archivetools.ArchiverFacade Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of archive-tools Show documentation
Show all versions of archive-tools Show documentation
Tools for handling AMS bundles.
The newest version!
/************************************************************************
* © 2019-2024 SAP SE or an SAP affiliate company. All rights reserved. *
************************************************************************/
package com.sap.cloud.security.ams.dcl.archivetools;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import org.apache.commons.compress.archivers.ArchiveInputStream;
import org.apache.commons.compress.archivers.ArchiveOutputStream;
public interface ArchiverFacade {
ArchiveInputStream createArchiveInputStream(InputStream is) throws IOException;
ArchiveOutputStream createArchiveOutputStream(OutputStream is) throws IOException;
ArchiveEntryCreator getEntityCreator();
}