Skip to content

Commit 11be25c

Browse files
Updated Release Notes
1 parent 9b0334a commit 11be25c

25 files changed

Lines changed: 50 additions & 50 deletions

Examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<dependency>
1515
<groupId>com.groupdocs</groupId>
1616
<artifactId>groupdocs-viewer-cloud</artifactId>
17-
<version>19.4</version>
17+
<version>19.5</version>
1818
<scope>compile</scope>
1919
</dependency>
2020
</dependencies>

Examples/src/main/java/examples/Supported_File_Formats/Viewer_Java_Get_Supported_Formats.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,22 @@
22

33
import com.groupdocs.cloud.viewer.client.*;
44
import com.groupdocs.cloud.viewer.model.*;
5-
import com.groupdocs.cloud.viewer.api.ViewerApi;
5+
import com.groupdocs.cloud.viewer.api.InfoApi;
66
import examples.Utils;
77

88
public class Viewer_Java_Get_Supported_Formats {
99

1010
public static void main(String[] args) {
1111

12-
ViewerApi apiInstance = new ViewerApi(Utils.AppSID, Utils.AppKey);
12+
InfoApi apiInstance = new InfoApi(Utils.AppSID, Utils.AppKey);
1313
try {
1414
FormatsResult response = apiInstance.getSupportedFileFormats();
1515

1616
for (Format format : response.getFormats()) {
1717
System.out.println(format.getFileFormat());
1818
}
1919
} catch (ApiException e) {
20-
System.err.println("Exception while calling ViewerApi:");
20+
System.err.println("Exception while calling InfoApi:");
2121
e.printStackTrace();
2222
}
2323
}

Examples/src/main/java/examples/Working_With_Document_Information/Viewer_Java_Get_Info_With_CAD_Options.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public class Viewer_Java_Get_Info_With_CAD_Options {
1010

1111
public static void main(String[] args) {
1212

13-
ViewerApi apiInstance = new ViewerApi(Utils.AppSID, Utils.AppKey);
13+
InfoApi apiInstance = new InfoApi(Utils.AppSID, Utils.AppKey);
1414
try {
1515

1616
ViewOptions viewOptions = new ViewOptions();
@@ -37,7 +37,7 @@ public static void main(String[] args) {
3737
System.out.println("Expected response type is InfoResult: " + response.getPages().size());
3838

3939
} catch (ApiException e) {
40-
System.err.println("Exception while calling ViewerApi:");
40+
System.err.println("Exception while calling InfoApi:");
4141
e.printStackTrace();
4242
}
4343
}

Examples/src/main/java/examples/Working_With_Document_Information/Viewer_Java_Get_Info_With_HTML_View_Format.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public class Viewer_Java_Get_Info_With_HTML_View_Format {
1010

1111
public static void main(String[] args) {
1212

13-
ViewerApi apiInstance = new ViewerApi(Utils.AppSID, Utils.AppKey);
13+
InfoApi apiInstance = new InfoApi(Utils.AppSID, Utils.AppKey);
1414
try {
1515

1616
ViewOptions viewOptions = new ViewOptions();
@@ -30,7 +30,7 @@ public static void main(String[] args) {
3030
System.out.println("Expected response type is InfoResult: " + response.getPages().size());
3131

3232
} catch (ApiException e) {
33-
System.err.println("Exception while calling ViewerApi:");
33+
System.err.println("Exception while calling InfoApi:");
3434
e.printStackTrace();
3535
}
3636
}

Examples/src/main/java/examples/Working_With_Document_Information/Viewer_Java_Get_Info_With_Image_View_Format.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public class Viewer_Java_Get_Info_With_Image_View_Format {
1010

1111
public static void main(String[] args) {
1212

13-
ViewerApi apiInstance = new ViewerApi(Utils.AppSID, Utils.AppKey);
13+
InfoApi apiInstance = new InfoApi(Utils.AppSID, Utils.AppKey);
1414
try {
1515

1616
ViewOptions viewOptions = new ViewOptions();
@@ -30,7 +30,7 @@ public static void main(String[] args) {
3030
System.out.println("Expected response type is InfoResult: " + response.getPages().size());
3131

3232
} catch (ApiException e) {
33-
System.err.println("Exception while calling ViewerApi:");
33+
System.err.println("Exception while calling InfoApi:");
3434
e.printStackTrace();
3535
}
3636
}

Examples/src/main/java/examples/Working_With_Document_Information/Viewer_Java_Get_Info_With_Image_View_Options.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public class Viewer_Java_Get_Info_With_Image_View_Options {
1010

1111
public static void main(String[] args) {
1212

13-
ViewerApi apiInstance = new ViewerApi(Utils.AppSID, Utils.AppKey);
13+
InfoApi apiInstance = new InfoApi(Utils.AppSID, Utils.AppKey);
1414
try {
1515

1616
ViewOptions viewOptions = new ViewOptions();
@@ -34,7 +34,7 @@ public static void main(String[] args) {
3434
System.out.println("Expected response type is InfoResult: " + response.getPages().size());
3535

3636
} catch (ApiException e) {
37-
System.err.println("Exception while calling ViewerApi:");
37+
System.err.println("Exception while calling InfoApi:");
3838
e.printStackTrace();
3939
}
4040
}

Examples/src/main/java/examples/Working_With_Document_Information/Viewer_Java_Get_Info_With_Minimal_ViewOptions.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public class Viewer_Java_Get_Info_With_Minimal_ViewOptions {
1010

1111
public static void main(String[] args) {
1212

13-
ViewerApi apiInstance = new ViewerApi(Utils.AppSID, Utils.AppKey);
13+
InfoApi apiInstance = new InfoApi(Utils.AppSID, Utils.AppKey);
1414
try {
1515

1616
ViewOptions viewOptions = new ViewOptions();
@@ -28,7 +28,7 @@ public static void main(String[] args) {
2828
System.out.println("Expected response type is InfoResult: " + response.getPages().size());
2929

3030
} catch (ApiException e) {
31-
System.err.println("Exception while calling ViewerApi:");
31+
System.err.println("Exception while calling InfoApi:");
3232
e.printStackTrace();
3333
}
3434
}

Examples/src/main/java/examples/Working_With_Document_Information/Viewer_Java_Get_Info_With_Project_Options.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public class Viewer_Java_Get_Info_With_Project_Options {
1212

1313
public static void main(String[] args) {
1414

15-
ViewerApi apiInstance = new ViewerApi(Utils.AppSID, Utils.AppKey);
15+
InfoApi apiInstance = new InfoApi(Utils.AppSID, Utils.AppKey);
1616
try {
1717

1818
ViewOptions viewOptions = new ViewOptions();
@@ -40,7 +40,7 @@ public static void main(String[] args) {
4040
System.out.println("Expected response type is InfoResult: " + response.getPages().size());
4141

4242
} catch (ApiException e) {
43-
System.err.println("Exception while calling ViewerApi:");
43+
System.err.println("Exception while calling InfoApi:");
4444
e.printStackTrace();
4545
}
4646
}

Examples/src/main/java/examples/Working_With_Document_Information/Viewer_Java_Get_Info_With_Render_Hidden_Pages.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public class Viewer_Java_Get_Info_With_Render_Hidden_Pages {
1010

1111
public static void main(String[] args) {
1212

13-
ViewerApi apiInstance = new ViewerApi(Utils.AppSID, Utils.AppKey);
13+
InfoApi apiInstance = new InfoApi(Utils.AppSID, Utils.AppKey);
1414
try {
1515

1616
ViewOptions viewOptions = new ViewOptions();
@@ -33,7 +33,7 @@ public static void main(String[] args) {
3333
System.out.println("Expected response type is InfoResult: " + response.getPages().size());
3434

3535
} catch (ApiException e) {
36-
System.err.println("Exception while calling ViewerApi:");
36+
System.err.println("Exception while calling InfoApi:");
3737
e.printStackTrace();
3838
}
3939
}

Examples/src/main/java/examples/Working_With_Document_Information/Viewer_Java_Get_Info_With_SpreadsheetOptions.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public class Viewer_Java_Get_Info_With_SpreadsheetOptions {
1010

1111
public static void main(String[] args) {
1212

13-
ViewerApi apiInstance = new ViewerApi(Utils.AppSID, Utils.AppKey);
13+
InfoApi apiInstance = new InfoApi(Utils.AppSID, Utils.AppKey);
1414
try {
1515

1616
ViewOptions viewOptions = new ViewOptions();
@@ -38,7 +38,7 @@ public static void main(String[] args) {
3838
System.out.println("Expected response type is InfoResult: " + response.getPages().size());
3939

4040
} catch (ApiException e) {
41-
System.err.println("Exception while calling ViewerApi:");
41+
System.err.println("Exception while calling InfoApi:");
4242
e.printStackTrace();
4343
}
4444
}

0 commit comments

Comments
 (0)