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

com.sap.cloud.security.ams.dcl.archivetools.ArchiveEntryCreator 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.File;
import java.io.IOException;

import org.apache.commons.compress.archivers.ArchiveOutputStream;

public interface ArchiveEntryCreator {
    void add(ArchiveOutputStream aos, String name, byte[] content) throws IOException;

    void add(ArchiveOutputStream aos, String name, File content, byte[] buffer) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy