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

com.sap.cds.services.pdf.PdfService Maven / Gradle / Ivy

There is a newer version: 3.4.1
Show newest version
/**************************************************************************
 * (C) 2019-2024 SAP SE or an SAP affiliate company. All rights reserved. *
 **************************************************************************/
package com.sap.cds.services.pdf;

import java.io.OutputStream;
import java.util.Map;

import com.sap.cds.services.Service;

/**
 * PDF export service
 */
public interface PdfService extends Service {

    final String DEFAULT_NAME = "PdfService$Default";
    final String EVENT_EXPORT = "EXPORT";

    /**
     * Write the rows of data to a PDF and send it to client via output stream
     * 
     * @param docDescHeader PDF document description
     * @param data          rows of data to be written
     * @param out           output stream
     */
    void export(PdfDocumentDescription docDescHeader, Iterable> data, OutputStream out);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy