Skip to content

Commit aa92807

Browse files
Merge branch 'master' into release
2 parents 2b9b203 + 0788289 commit aa92807

File tree

696 files changed

+8935
-2153
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

696 files changed

+8935
-2153
lines changed

README.md

Lines changed: 9 additions & 2 deletions

examples/AcceptAllRevisions.java

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

1919
// Calls AcceptAllRevisions method for document in cloud.
2020
String myVar3 = fileName;
21-
AcceptAllRevisionsRequest request = new AcceptAllRevisionsRequest(myVar3, null, null, null, null, null);
21+
AcceptAllRevisionsRequest request = new AcceptAllRevisionsRequest(myVar3, null, null, null, null, null, null);
2222
wordsApi.acceptAllRevisions(request);

examples/AcceptAllRevisionsOnline.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44

55
// Calls AcceptAllRevisionsOnline method for document in cloud.
66
byte[] requestDocument = Files.readAllBytes(Paths.get(fileName).toAbsolutePath());
7-
AcceptAllRevisionsOnlineRequest request = new AcceptAllRevisionsOnlineRequest(requestDocument, null, null, null);
7+
AcceptAllRevisionsOnlineRequest request = new AcceptAllRevisionsOnlineRequest(requestDocument, null, null, null, null);
88
AcceptAllRevisionsOnlineResponse acceptAllRevisionsOnlineResult = wordsApi.acceptAllRevisionsOnline(request);
99
Files.write(Paths.get("test_result.docx"), acceptAllRevisionsOnlineResult.getDocument());

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<artifactId>aspose-words-cloud</artifactId>
55
<packaging>jar</packaging>
66
<name>AsposeWordsCloud</name>
7-
<version>21.12.0</version>
7+
<version>22.1.0</version>
88
<url>https://www.aspose.cloud/</url>
99
<description>Aspose Words Java SDK</description>
1010
<scm>

src/main/java/com/aspose/words/cloud/ApiCallback.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* --------------------------------------------------------------------------------
33
* <copyright company="Aspose" file="ApiCallback.java">
4-
* Copyright (c) 2021 Aspose.Words for Cloud
4+
* Copyright (c) 2022 Aspose.Words for Cloud
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

src/main/java/com/aspose/words/cloud/ApiClient.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* --------------------------------------------------------------------------------
33
* <copyright company="Aspose" file="ApiClient.java">
4-
* Copyright (c) 2021 Aspose.Words for Cloud
4+
* Copyright (c) 2022 Aspose.Words for Cloud
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -68,7 +68,7 @@ public class ApiClient {
6868
private String apiVersion = "v4.0";
6969
private String baseUrl = "https://api.aspose.cloud";
7070
private String basePath = baseUrl + "/" + apiVersion;
71-
private String clientVersion = "21.12";
71+
private String clientVersion = "22.1";
7272
private boolean debugging = false;
7373
private Map<String, String> defaultHeaderMap = new HashMap<String, String>();
7474
private String tempFolderPath = null;

src/main/java/com/aspose/words/cloud/ApiException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* --------------------------------------------------------------------------------
33
* <copyright company="Aspose" file="ApiException.java">
4-
* Copyright (c) 2021 Aspose.Words for Cloud
4+
* Copyright (c) 2022 Aspose.Words for Cloud
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

src/main/java/com/aspose/words/cloud/ApiLoggingInterceptor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* --------------------------------------------------------------------------------
33
* <copyright company="Aspose" file="ApiLoggingInterceptor.java">
4-
* Copyright (c) 2021 Aspose.Words for Cloud
4+
* Copyright (c) 2022 Aspose.Words for Cloud
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

src/main/java/com/aspose/words/cloud/ApiResponse.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* --------------------------------------------------------------------------------
33
* <copyright company="Aspose" file="ApiResponse.java">
4-
* Copyright (c) 2021 Aspose.Words for Cloud
4+
* Copyright (c) 2022 Aspose.Words for Cloud
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

src/main/java/com/aspose/words/cloud/ChildRequestContent.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* --------------------------------------------------------------------------------
33
* <copyright company="Aspose" file="ChildRequestContent.java">
4-
* Copyright (c) 2021 Aspose.Words for Cloud
4+
* Copyright (c) 2022 Aspose.Words for Cloud
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

0 commit comments

Comments
 (0)