com.formkiq.server.service.ExportService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of formkiq-server Show documentation
Show all versions of formkiq-server Show documentation
Server-side integration for the FormKiQ ios application
package com.formkiq.server.service;
import java.io.IOException;
import java.io.OutputStream;
import com.formkiq.server.service.dto.FormJSON;
/**
* Method to export JSON to a format.
*
*/
public interface ExportService {
/**
* Export to Excel XLS format.
* @param form FormJSON
* @param os OutputStream
* @throws IOException IOException
*/
void writeToXLS(FormJSON form, OutputStream os) throws IOException;
/**
* Export to Excel XLSX format.
* @param form FormJSON
* @param os OutputStream
* @throws IOException IOException
*/
void writeToXLSX(final FormJSON form, final OutputStream os)
throws IOException;
}