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

com.sap.cloud.security.ams.dcl.archivetools.ArchiverFacade Maven / Gradle / Ivy

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();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy