mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-06-23 07:55:07 +00:00
18 lines
491 B
Java
18 lines
491 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 {
|
|
|
|
void addAttachment(
|
|
PDDocument document,
|
|
PDEmbeddedFilesNameTreeNode efTree,
|
|
List<MultipartFile> attachments)
|
|
throws IOException;
|
|
}
|