FormsService.java
904 Bytes
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* com.adobe.aemfd.docmanager.Document
*/
package com.adobe.fd.forms.api;
import com.adobe.aemfd.docmanager.Document;
import com.adobe.fd.forms.api.DataFormat;
import com.adobe.fd.forms.api.FormsServiceException;
import com.adobe.fd.forms.api.PDFFormRenderOptions;
import com.adobe.fd.forms.api.ValidationOptions;
import com.adobe.fd.forms.api.ValidationResult;
public interface FormsService {
public Document renderPDFForm(String var1, Document var2, PDFFormRenderOptions var3) throws FormsServiceException;
public Document exportData(Document var1, DataFormat var2) throws FormsServiceException;
public Document importData(Document var1, Document var2) throws FormsServiceException;
public ValidationResult validate(String var1, Document var2, ValidationOptions var3) throws FormsServiceException;
}