com.sap.cloud.security.ams.dcl.archivetools.ArchiveEntryCreator 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.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;
}