io.camunda.connector.pdf.toolbox.PdfSubFunction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pdf-function Show documentation
Show all versions of pdf-function Show documentation
Collection of PDF connectors
The newest version!
package io.camunda.connector.pdf.toolbox;
import io.camunda.connector.api.error.ConnectorException;
import io.camunda.connector.api.outbound.OutboundConnectorContext;
import io.camunda.connector.pdf.PdfInput;
import io.camunda.connector.pdf.PdfOutput;
import java.util.List;
import java.util.Map;
public interface PdfSubFunction {
PdfOutput executeSubFunction(PdfInput pdfInput, OutboundConnectorContext context) throws ConnectorException;
List getSubFunctionParameters(TypeParameter typeParameter);
Map getSubFunctionListBpmnErrors();
String getSubFunctionName();
String getSubFunctionDescription();
String getSubFunctionType();
enum TypeParameter {INPUT, OUTPUT}
}