Stirling-PDF/stirling-pdf/src/main/java/stirling/software/SPDF/service/PDFAttachmentServiceInterface.java
2025-06-18 15:13:27 +01:00

18 lines
493 B
Java

package stirling.software.SPDF.service;
import java.io.IOException;
import java.util.List;
import org.apache.pdfbox.pdmodel.PDDocument;
import org.apache.pdfbox.pdmodel.PDEmbeddedFilesNameTreeNode;
import org.springframework.web.multipart.MultipartFile;
public interface PDFAttachmentServiceInterface {
byte[] addAttachment(
PDDocument document,
PDEmbeddedFilesNameTreeNode efTree,
List<MultipartFile> attachments)
throws IOException;
}