Package net.webpdf.wsclient.openapi
Class OperationFormsImport
- java.lang.Object
-
- net.webpdf.wsclient.openapi.OperationFormsImport
-
public class OperationFormsImport extends Object
Used to import data into the form fields.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classOperationFormsImport.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_DATAstatic StringJSON_PROPERTY_FLATTENstatic StringJSON_PROPERTY_FORMAT
-
Constructor Summary
Constructors Constructor Description OperationFormsImport()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description OperationFormsImportdata(OperationFormsFileData data)booleanequals(Object o)OperationFormsImportflatten(Boolean flatten)OperationFormsImportformat(OperationFormsImport.FormatEnum format)@NotNull OperationFormsFileDatagetData()Get data@Nullable BooleangetFlatten()When set to \"true\" this will render the field contents after importing the new form values.@Nullable OperationFormsImport.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()voidsetData(OperationFormsFileData data)voidsetFlatten(Boolean flatten)voidsetFormat(OperationFormsImport.FormatEnum format)StringtoString()
-
-
-
Field Detail
-
JSON_PROPERTY_DATA
public static final String JSON_PROPERTY_DATA
- See Also:
- Constant Field Values
-
JSON_PROPERTY_FLATTEN
public static final String JSON_PROPERTY_FLATTEN
- See Also:
- Constant Field Values
-
JSON_PROPERTY_FORMAT
public static final String JSON_PROPERTY_FORMAT
- See Also:
- Constant Field Values
-
-
Method Detail
-
data
public OperationFormsImport data(OperationFormsFileData data)
-
getData
@NotNull public @NotNull OperationFormsFileData getData()
Get data- Returns:
- data
-
setData
public void setData(OperationFormsFileData data)
-
flatten
public OperationFormsImport flatten(Boolean flatten)
-
getFlatten
@Nullable public @Nullable Boolean getFlatten()
When set to \"true\" this will render the field contents after importing the new form values. (please refer to the documentation of the \"flatten element\").- Returns:
- flatten
-
setFlatten
public void setFlatten(Boolean flatten)
-
format
public OperationFormsImport format(OperationFormsImport.FormatEnum format)
-
getFormat
@Nullable public @Nullable OperationFormsImport.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(OperationFormsImport.FormatEnum format)
-
-