Skip to content

Commit 010c73b

Browse files
committed
Update sources
1 parent da860fb commit 010c73b

67 files changed

Lines changed: 9653 additions & 4 deletions

Some content is hidden

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

LICENSE

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
MIT License
1+
The MIT License (MIT)
22

3-
Copyright (c) 2018
3+
Copyright (c) 2003-2018 Aspose Pty Ltd
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal
@@ -19,3 +19,4 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
SOFTWARE.
22+

README.md

Lines changed: 103 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,103 @@
1-
# groupdocs-annotation-cloud-java
2-
Java library for communicating with the GroupDocs.Annotation Cloud API
1+
# GroupDocs.Annotation Cloud SDK for Java
2+
This repository contains GroupDocs.Annotation Cloud SDK for Java source code. This SDK allows you to work with GroupDocs.Annotation Cloud REST APIs in your Java applications.
3+
4+
## Requirements
5+
6+
Building the API client library requires [Maven](https://maven.apache.org/) to be installed.
7+
8+
## Installation
9+
10+
To install the API client library to your local Maven repository, simply execute:
11+
12+
```shell
13+
mvn install
14+
```
15+
16+
To deploy it to a remote Maven repository instead, configure the settings of the repository and execute:
17+
18+
```shell
19+
mvn deploy
20+
```
21+
22+
Refer to the [official documentation](https://maven.apache.org/plugins/maven-deploy-plugin/usage.html) for more information.
23+
24+
### Maven users
25+
26+
Add following repository and dependency to your project's POM
27+
28+
```xml
29+
<repository>
30+
<id>groupdocs-artifact-repository</id>
31+
<name>GroupDocs Artifact Repository</name>
32+
<url>http://artifact.groupdocs.cloud/repo</url>
33+
</repository>
34+
```
35+
36+
```xml
37+
<dependency>
38+
<groupId>com.groupdocs</groupId>
39+
<artifactId>groupdocs-annotation-cloud</artifactId>
40+
<version>18.4</version>
41+
<scope>compile</scope>
42+
</dependency>
43+
```
44+
45+
### Others
46+
47+
At first generate the JAR by executing:
48+
49+
mvn package
50+
51+
Then manually install the following JARs:
52+
53+
* target/groupdocs-annotation-cloud-18.4.jar
54+
* target/lib/*.jar
55+
56+
## Getting Started
57+
58+
Please follow the [installation](#installation) instruction and execute the following Java code:
59+
60+
```java
61+
62+
import com.groupdocs.cloud.annotation.client.*;
63+
import com.groupdocs.cloud.annotation.model.*;
64+
import com.groupdocs.cloud.annotation.api.AnnotationApi;
65+
66+
import java.io.File;
67+
import java.util.*;
68+
69+
public class AnnotationApiExample {
70+
71+
public static void main(String[] args) {
72+
//TODO: Get your AppSID and AppKey at https://dashboard.groupdocs.cloud (free registration is required).
73+
String appSid = "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX";
74+
String appKey = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX";
75+
76+
AnnotationApi apiInstance = new AnnotationApi(appSid, appKey);
77+
String name = "name_example"; // String | The document name.
78+
String folder = "folder_example"; // String | The folder name.
79+
String password = "password_example"; // String |
80+
try {
81+
File result = apiInstance.deleteCleanDocument(name, folder, password);
82+
System.out.println(result);
83+
} catch (ApiException e) {
84+
System.err.println("Exception when calling AnnotationApi#deleteCleanDocument");
85+
e.printStackTrace();
86+
}
87+
}
88+
}
89+
90+
```
91+
92+
## Licensing
93+
All GroupDocs.Annotation Cloud SDKs are licensed under [MIT License](LICENSE).
94+
95+
## Resources
96+
+ [**Website**](https://www.groupdocs.cloud)
97+
+ [**Product Home**](https://products.groupdocs.cloud/annotation/cloud)
98+
+ [**Documentation**](https://docs.groupdocs.cloud/display/annotationcloud/Home)
99+
+ [**Free Support Forum**](https://forum.groupdocs.cloud/c/annotation)
100+
+ [**Blog**](https://blog.groupdocs.cloud/category/groupdocs-annotation-cloud-product-family)
101+
102+
## Contact Us
103+
Your feedback is very important to us. Please feel free to contact us using our [Support Forums](https://forum.groupdocs.cloud/c/annotation).

0 commit comments

Comments
 (0)