Skip to content

Commit 2427bdf

Browse files
Merge pull request #27 from kaferi/master
Update to v20.1
2 parents ab29d2e + 2d30193 commit 2427bdf

File tree

6 files changed

+475
-7
lines changed

6 files changed

+475
-7
lines changed

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Aspose.PDF Cloud
22
- API version: 3.0
3-
- Package version: 19.12.0
3+
- Package version: 20.1.0
44

55
[Aspose.PDF Cloud](https://products.aspose.cloud/pdf) is a true REST API that enables you to perform a wide range of document processing operations including creation, manipulation, conversion and rendering of PDF documents in the cloud.
66

@@ -38,7 +38,7 @@ Add this dependency to your project's POM:
3838
<dependency>
3939
<groupId>com.aspose</groupId>
4040
<artifactId>aspose-cloud-pdf</artifactId>
41-
<version>19.12.0</version>
41+
<version>20.1.0</version>
4242
<scope>compile</scope>
4343
</dependency>
4444
```
@@ -48,7 +48,7 @@ Add this dependency to your project's POM:
4848
Add this dependency to your project's build file:
4949

5050
```groovy
51-
compile "com.aspose:aspose-cloud-pdf:19.12.0"
51+
compile "com.aspose:aspose-cloud-pdf:20.1.0"
5252
```
5353

5454
### Others
@@ -59,7 +59,7 @@ At first generate the JAR by executing:
5959

6060
Then manually install the following JARs:
6161

62-
* target/aspose-cloud-pdf-19.12.0.jar
62+
* target/aspose-cloud-pdf-20.1.0.jar
6363
* target/lib/*.jar
6464

6565
## Getting Started
@@ -355,6 +355,7 @@ Class | Method | HTTP request | Description
355355
*PdfApi* | [**postRadioButtonFields**](docs/PdfApi.md#postRadioButtonFields) | **POST** /pdf/\{name}/fields/radiobutton | Add document RadioButton fields.
356356
*PdfApi* | [**postSignDocument**](docs/PdfApi.md#postSignDocument) | **POST** /pdf/\{name}/sign | Sign document.
357357
*PdfApi* | [**postSignPage**](docs/PdfApi.md#postSignPage) | **POST** /pdf/\{name}/pages/\{pageNumber}/sign | Sign page.
358+
*PdfApi* | [**postSignatureField**](docs/PdfApi.md#postSignatureField) | **POST** /pdf/\{name}/fields/signature | Add document signature field.
358359
*PdfApi* | [**postSplitDocument**](docs/PdfApi.md#postSplitDocument) | **POST** /pdf/\{name}/split | Split document to parts.
359360
*PdfApi* | [**postTextBoxFields**](docs/PdfApi.md#postTextBoxFields) | **POST** /pdf/\{name}/fields/textbox | Add document text box fields.
360361
*PdfApi* | [**putAddNewPage**](docs/PdfApi.md#putAddNewPage) | **PUT** /pdf/\{name}/pages | Add new page to end of the document.
@@ -447,6 +448,7 @@ Class | Method | HTTP request | Description
447448
*PdfApi* | [**putScreenAnnotationDataExtract**](docs/PdfApi.md#putScreenAnnotationDataExtract) | **PUT** /pdf/\{name}/annotations/screen/\{annotationId}/data/extract | Extract document screen annotation content to storage
448449
*PdfApi* | [**putSearchableDocument**](docs/PdfApi.md#putSearchableDocument) | **PUT** /pdf/\{name}/ocr | Create searchable PDF document. Generate OCR layer for images in input PDF document.
449450
*PdfApi* | [**putSetProperty**](docs/PdfApi.md#putSetProperty) | **PUT** /pdf/\{name}/documentproperties/\{propertyName} | Add/update document property.
451+
*PdfApi* | [**putSignatureField**](docs/PdfApi.md#putSignatureField) | **PUT** /pdf/\{name}/fields/signature/\{fieldName} | Replace document signature field.
450452
*PdfApi* | [**putSoundAnnotation**](docs/PdfApi.md#putSoundAnnotation) | **PUT** /pdf/\{name}/annotations/sound/\{annotationId} | Replace document sound annotation
451453
*PdfApi* | [**putSoundAnnotationDataExtract**](docs/PdfApi.md#putSoundAnnotationDataExtract) | **PUT** /pdf/\{name}/annotations/sound/\{annotationId}/data/extract | Extract document sound annotation content to storage
452454
*PdfApi* | [**putSquareAnnotation**](docs/PdfApi.md#putSquareAnnotation) | **PUT** /pdf/\{name}/annotations/square/\{annotationId} | Replace document square annotation

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ apply plugin: 'idea'
2020
apply plugin: 'eclipse'
2121

2222
group = 'com.aspose'
23-
version = '19.12.0'
23+
version = '20.1.0'
2424

2525
buildscript {
2626
repositories {
@@ -71,7 +71,7 @@ dependencies {
7171
publish {
7272
groupId = 'com.aspose'
7373
artifactId = 'aspose-cloud-pdf'
74-
publishVersion = '19.12.0'
74+
publishVersion = '20.1.0'
7575
desc = 'Aspose.PDF Cloud is a REST API for creating and editing PDF files. It can also be used to convert PDF files to different formats like DOC, HTML, XPS, TIFF and many more. Aspose.PDF Cloud gives you control: create PDFs from scratch or from HTML, XML, template, database, XPS or an image. Render PDFs to image formats such as JPEG, PNG, GIF, BMP, TIFF and many others. Aspose.PDF Cloud helps you manipulate elements of a PDF file like text, annotations, watermarks, signatures, bookmarks, stamps and so on. Its REST API also allows you to manage PDF pages by using features like merging, splitting, and inserting. Add images to a PDF file or convert PDF pages to images.'
7676
licences = ['MIT']
7777
website = 'https://products.aspose.cloud/pdf/cloud'

docs/PdfApi.md

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -243,6 +243,7 @@ Method | HTTP request | Description
243243
[**postRadioButtonFields**](PdfApi.md#postRadioButtonFields) | **POST** /pdf/\{name}/fields/radiobutton | Add document RadioButton fields.
244244
[**postSignDocument**](PdfApi.md#postSignDocument) | **POST** /pdf/\{name}/sign | Sign document.
245245
[**postSignPage**](PdfApi.md#postSignPage) | **POST** /pdf/\{name}/pages/\{pageNumber}/sign | Sign page.
246+
[**postSignatureField**](PdfApi.md#postSignatureField) | **POST** /pdf/\{name}/fields/signature | Add document signature field.
246247
[**postSplitDocument**](PdfApi.md#postSplitDocument) | **POST** /pdf/\{name}/split | Split document to parts.
247248
[**postTextBoxFields**](PdfApi.md#postTextBoxFields) | **POST** /pdf/\{name}/fields/textbox | Add document text box fields.
248249
[**putAddNewPage**](PdfApi.md#putAddNewPage) | **PUT** /pdf/\{name}/pages | Add new page to end of the document.
@@ -335,6 +336,7 @@ Method | HTTP request | Description
335336
[**putScreenAnnotationDataExtract**](PdfApi.md#putScreenAnnotationDataExtract) | **PUT** /pdf/\{name}/annotations/screen/\{annotationId}/data/extract | Extract document screen annotation content to storage
336337
[**putSearchableDocument**](PdfApi.md#putSearchableDocument) | **PUT** /pdf/\{name}/ocr | Create searchable PDF document. Generate OCR layer for images in input PDF document.
337338
[**putSetProperty**](PdfApi.md#putSetProperty) | **PUT** /pdf/\{name}/documentproperties/\{propertyName} | Add/update document property.
339+
[**putSignatureField**](PdfApi.md#putSignatureField) | **PUT** /pdf/\{name}/fields/signature/\{fieldName} | Replace document signature field.
338340
[**putSoundAnnotation**](PdfApi.md#putSoundAnnotation) | **PUT** /pdf/\{name}/annotations/sound/\{annotationId} | Replace document sound annotation
339341
[**putSoundAnnotationDataExtract**](PdfApi.md#putSoundAnnotationDataExtract) | **PUT** /pdf/\{name}/annotations/sound/\{annotationId}/data/extract | Extract document sound annotation content to storage
340342
[**putSquareAnnotation**](PdfApi.md#putSquareAnnotation) | **PUT** /pdf/\{name}/annotations/square/\{annotationId} | Replace document square annotation
@@ -6177,6 +6179,30 @@ Name | Type | Description | Notes
61776179

61786180
[**AsposeResponse**](AsposeResponse.md)
61796181

6182+
### HTTP request headers
6183+
6184+
- **Content-Type**: application/json
6185+
- **Accept**: application/json
6186+
6187+
<a name="postSignatureField"></a>
6188+
# **postSignatureField**
6189+
> AsposeResponse postSignatureField(name, field, storage, folder)
6190+
6191+
Add document signature field.
6192+
6193+
### Parameters
6194+
6195+
Name | Type | Description | Notes
6196+
------------- | ------------- | ------------- | -------------
6197+
**name** | **String**| The document name. |
6198+
**field** | [**SignatureField**](SignatureField.md)| The field. |
6199+
**storage** | **String**| The document storage. | [optional]
6200+
**folder** | **String**| The document folder. | [optional]
6201+
6202+
### Return type
6203+
6204+
[**AsposeResponse**](AsposeResponse.md)
6205+
61806206
### HTTP request headers
61816207

61826208
- **Content-Type**: application/json
@@ -8585,6 +8611,31 @@ Name | Type | Description | Notes
85858611

85868612
[**DocumentPropertyResponse**](DocumentPropertyResponse.md)
85878613

8614+
### HTTP request headers
8615+
8616+
- **Content-Type**: application/json
8617+
- **Accept**: application/json
8618+
8619+
<a name="putSignatureField"></a>
8620+
# **putSignatureField**
8621+
> SignatureFieldResponse putSignatureField(name, fieldName, field, storage, folder)
8622+
8623+
Replace document signature field.
8624+
8625+
### Parameters
8626+
8627+
Name | Type | Description | Notes
8628+
------------- | ------------- | ------------- | -------------
8629+
**name** | **String**| The document name. |
8630+
**fieldName** | **String**| The field name. |
8631+
**field** | [**SignatureField**](SignatureField.md)| The field. |
8632+
**storage** | **String**| The document storage. | [optional]
8633+
**folder** | **String**| The document folder. | [optional]
8634+
8635+
### Return type
8636+
8637+
[**SignatureFieldResponse**](SignatureFieldResponse.md)
8638+
85888639
### HTTP request headers
85898640

85908641
- **Content-Type**: application/json

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<artifactId>aspose-cloud-pdf</artifactId>
77
<packaging>jar</packaging>
88
<name>aspose-cloud-pdf</name>
9-
<version>19.12.0</version>
9+
<version>20.1.0</version>
1010
<url>https://www.aspose.cloud/</url>
1111
<description>Java library for communicating with the Aspose.Pdf for Cloud API</description>
1212

0 commit comments

Comments
 (0)