Package net.webpdf.wsclient.openapi
Class OperationFormsExport
- java.lang.Object
-
- net.webpdf.wsclient.openapi.OperationFormsExport
-
public class OperationFormsExport extends Object
Used to export data from the form fields.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classOperationFormsExport.FormatEnumUsed to set the format for exporting the data in a PDF form: * xml = XML * fdf = FDF * xfdf = XFDF * xdp = XDP (only for PDF documents that contain XFA data) The exported data will be returned with the web service call as per the selected format.
-
Field Summary
Fields Modifier and Type Field Description static StringJSON_PROPERTY_FDF_FILE_NAMEstatic StringJSON_PROPERTY_FORMAT
-
Constructor Summary
Constructors Constructor Description OperationFormsExport()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)OperationFormsExportfdfFileName(String fdfFileName)OperationFormsExportformat(OperationFormsExport.FormatEnum format)@Nullable StringgetFdfFileName()Used to specify the file name of the PDF document that should be loaded automatically when the FDF document is opened.@Nullable OperationFormsExport.FormatEnumgetFormat()Used to set the format for exporting the data in a PDF form: * xml = XML * fdf = FDF * xfdf = XFDF * xdp = XDP (only for PDF documents that contain XFA data) The exported data will be returned with the web service call as per the selected format.inthashCode()voidsetFdfFileName(String fdfFileName)voidsetFormat(OperationFormsExport.FormatEnum format)StringtoString()
-
-
-
Field Detail
-
JSON_PROPERTY_FDF_FILE_NAME
public static final String JSON_PROPERTY_FDF_FILE_NAME
- See Also:
- Constant Field Values
-
JSON_PROPERTY_FORMAT
public static final String JSON_PROPERTY_FORMAT
- See Also:
- Constant Field Values
-
-
Method Detail
-
fdfFileName
public OperationFormsExport fdfFileName(String fdfFileName)
-
getFdfFileName
@Nullable public @Nullable String getFdfFileName()
Used to specify the file name of the PDF document that should be loaded automatically when the FDF document is opened. This setting is only used if \"format\" is set to \"fdf\".- Returns:
- fdfFileName
-
setFdfFileName
public void setFdfFileName(String fdfFileName)
-
format
public OperationFormsExport format(OperationFormsExport.FormatEnum format)
-
getFormat
@Nullable public @Nullable OperationFormsExport.FormatEnum getFormat()
Used to set the format for exporting the data in a PDF form: * xml = XML * fdf = FDF * xfdf = XFDF * xdp = XDP (only for PDF documents that contain XFA data) The exported data will be returned with the web service call as per the selected format. **Tip:** The format of this is described by the http://schema.webpdf.de/1.0/form/data.xsd schema.- Returns:
- format
-
setFormat
public void setFormat(OperationFormsExport.FormatEnum format)
-
-