Skip to content

Commit 2b60248

Browse files
committed
Updated sources
1 parent 45f6806 commit 2b60248

6 files changed

Lines changed: 545 additions & 59 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Add following repository and dependency to your project's POM
2424
<dependency>
2525
<groupId>com.groupdocs</groupId>
2626
<artifactId>groupdocs-conversion-cloud</artifactId>
27-
<version>25.5</version>
27+
<version>25.6</version>
2828
<scope>compile</scope>
2929
</dependency>
3030
```
@@ -43,7 +43,7 @@ repositories {
4343
...
4444
dependencies {
4545
...
46-
implementation 'com.groupdocs:groupdocs-conversion-cloud:25.5'
46+
implementation 'com.groupdocs:groupdocs-conversion-cloud:25.6'
4747
}
4848
```
4949

@@ -100,7 +100,7 @@ mvn package -D maven.test.skip=true
100100

101101
Then manually install the following JARs:
102102

103-
* target/groupdocs-conversion-cloud-25.5.jar
103+
* target/groupdocs-conversion-cloud-25.6.jar
104104
* target/lib/*.jar
105105

106106
## Licensing

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>groupdocs-conversion-cloud</artifactId>
66
<packaging>jar</packaging>
77
<name>groupdocs-conversion-cloud</name>
8-
<version>25.5</version>
8+
<version>25.6</version>
99
<url>https://github.com/groupdocs-conversion-cloud/groupdocs-conversion-cloud-java</url>
1010
<description>Java library for communicating with the GroupDocs.Conversion Cloud API</description>
1111
<scm>

simplified-pom.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>com.groupdocs</groupId>
77
<artifactId>groupdocs-conversion-cloud</artifactId>
8-
<version>25.5</version>
8+
<version>25.6</version>
99
<packaging>jar</packaging>
1010

1111
<name>groupdocs-conversion-cloud</name>

src/main/java/com/groupdocs/cloud/conversion/client/ApiClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ public ApiClient(Configuration configuration) {
9595
this.json = new JSON();
9696

9797
// Set default User-Agent.
98-
setUserAgent("java-sdk/25.5");
98+
setUserAgent("java-sdk/25.6");
9999

100100
// Set connection timeout
101101
setConnectTimeout(configuration.getTimeout());

src/main/java/com/groupdocs/cloud/conversion/model/PresentationLoadOptions.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -240,10 +240,10 @@ public PresentationLoadOptions depth(Integer depth) {
240240
}
241241

242242
/**
243-
* Implements GroupDocs.Conversion.Contracts.IDocumentsContainerLoadOptions.Depth Default: 1
243+
* Option to control how many levels in depth to perform conversion Default: 1
244244
* @return depth
245245
**/
246-
@ApiModelProperty(required = true, value = "Implements GroupDocs.Conversion.Contracts.IDocumentsContainerLoadOptions.Depth Default: 1")
246+
@ApiModelProperty(required = true, value = "Option to control how many levels in depth to perform conversion Default: 1")
247247
public Integer getDepth() {
248248
return depth;
249249
}
@@ -258,10 +258,10 @@ public PresentationLoadOptions convertOwned(Boolean convertOwned) {
258258
}
259259

260260
/**
261-
* Implements GroupDocs.Conversion.Contracts.IDocumentsContainerLoadOptions.ConvertOwned Default is false
261+
* Option to control whether the owned documents in the documents container must be converted
262262
* @return convertOwned
263263
**/
264-
@ApiModelProperty(required = true, value = "Implements GroupDocs.Conversion.Contracts.IDocumentsContainerLoadOptions.ConvertOwned Default is false")
264+
@ApiModelProperty(required = true, value = "Option to control whether the owned documents in the documents container must be converted")
265265
public Boolean getConvertOwned() {
266266
return convertOwned;
267267
}
@@ -276,10 +276,10 @@ public PresentationLoadOptions convertOwner(Boolean convertOwner) {
276276
}
277277

278278
/**
279-
* Implements GroupDocs.Conversion.Contracts.IDocumentsContainerLoadOptions.ConvertOwner Default is true
279+
* Option to control whether the documents container itself must be converted If this property is true the documents container will be the first converted document Default is true
280280
* @return convertOwner
281281
**/
282-
@ApiModelProperty(required = true, value = "Implements GroupDocs.Conversion.Contracts.IDocumentsContainerLoadOptions.ConvertOwner Default is true")
282+
@ApiModelProperty(required = true, value = "Option to control whether the documents container itself must be converted If this property is true the documents container will be the first converted document Default is true")
283283
public Boolean getConvertOwner() {
284284
return convertOwner;
285285
}

0 commit comments

Comments
 (0)