You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: SampleApplication/README.MD
+14-4
Original file line number
Diff line number
Diff line change
@@ -1,25 +1,35 @@
1
1
SampleApplication is intended to provide a starting point for building custom Java application integrations using the SendSafely Java Client API.
2
2
3
3
# Instructions
4
-
Download the most recent release of the SendSafely Client API, extract, and copy all of the contained jar files into the SampleApplication/lib folder.
4
+
Download the most recent release of the SendSafely Client API from [GitHub](https://github.com/SendSafely/Java-Client-API/releases) or a [public maven repository](https://mvnrepository.com/artifact/com.sendsafely/sendsafely-java-api) and copy the jar files into the SampleApplication/lib folder. Alternatively, build and run SampleApplication using the Maven instructions below.
The sendsafely-java-api jar is available from [GitHub](https://github.com/SendSafely/Java-Client-API/releases) or a [public maven repository](https://search.maven.org/artifact/com.sendsafely/sendsafely-java-api).
3
+
4
+
Use the following dependency in your project to grab via Maven:
5
+
```
6
+
<dependency>
7
+
<groupId>com.sendsafely</groupId>
8
+
<artifactId>sendsafely-java-api</artifactId>
9
+
<version>3.1.6</version>
10
+
</dependency>
11
+
```
12
+
13
+
Refer to the SendSafely [Java-Client-API/SampleApplication](https://github.com/SendSafely/Java-Client-API/tree/master/SampleApplication) for a quick start with using the Java Client API.
<description>The SendSafely Client API allows programmatic access to SendSafely and provides a layer of abstraction from our REST API, which requires developers to perform several complex tasks in a correct manner. </description>
* @description Finalizes the package so it can be delivered to the recipients.
685
+
* @param packageId The unique package id of the package to be finalized.
686
+
* @param keycode The keycode belonging to the package.
687
+
* @param notify A boolean flag indicating whether SendSafely should send the secure link to the package recipients
688
+
* @param allowReplyAll A boolean flag that when set to true will allow recipients to reply to the package sender and all other recipients on the package. By default, SendSafely only allows replying to the package sender.
689
+
* @returnType PackageURL
690
+
* @return A link to access the package. This link can be sent to the recipients.
0 commit comments