Skip to content

Commit 65abea0

Browse files
Merge pull request #17 from SendSafely/v3.1.8
v3.1.8
2 parents ad47e89 + 0e0129b commit 65abea0

23 files changed

+25
-7
lines changed
-328 KB
Binary file not shown.
368 KB
Binary file not shown.
-4.25 MB
Binary file not shown.
5.6 MB
Binary file not shown.
270 KB
Binary file not shown.

SampleApplication/lib/gson-2.8.6.jar

-235 KB
Binary file not shown.

SampleApplication/lib/gson-2.8.9.jar

252 KB
Binary file not shown.
Binary file not shown.

SampleApplication/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<dependency>
1717
<groupId>com.sendsafely</groupId>
1818
<artifactId>sendsafely-java-api</artifactId>
19-
<version>3.1.5</version>
19+
<version>3.1.8</version>
2020
</dependency>
2121
</dependencies>
2222

SendSafelyAPI/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Use the following dependency in your project to grab via Maven:
66
<dependency>
77
<groupId>com.sendsafely</groupId>
88
<artifactId>sendsafely-java-api</artifactId>
9-
<version>3.1.7</version>
9+
<version>3.1.8</version>
1010
</dependency>
1111
```
1212

-328 KB
Binary file not shown.
368 KB
Binary file not shown.
-4.25 MB
Binary file not shown.
5.6 MB
Binary file not shown.

SendSafelyAPI/lib/commons-io-2.5.jar

-204 KB
Binary file not shown.

SendSafelyAPI/lib/commons-io-2.7.jar

270 KB
Binary file not shown.

SendSafelyAPI/lib/gson-2.8.6.jar

-235 KB
Binary file not shown.

SendSafelyAPI/lib/gson-2.8.9.jar

252 KB
Binary file not shown.
Binary file not shown.

SendSafelyAPI/pom.xml

+5-5
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/ma
66

77
<groupId>com.sendsafely</groupId>
88
<artifactId>sendsafely-java-api</artifactId>
9-
<version>3.1.7</version>
9+
<version>3.1.8</version>
1010
<packaging>jar</packaging>
1111

1212
<name>SendSafely Java Client API</name>
@@ -54,22 +54,22 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/ma
5454
<dependency>
5555
<groupId>com.google.code.gson</groupId>
5656
<artifactId>gson</artifactId>
57-
<version>2.8.6</version>
57+
<version>2.8.9</version>
5858
</dependency>
5959
<dependency>
6060
<groupId>commons-io</groupId>
6161
<artifactId>commons-io</artifactId>
62-
<version>2.5</version>
62+
<version>2.7</version>
6363
</dependency>
6464
<dependency>
6565
<groupId>org.bouncycastle</groupId>
6666
<artifactId>bcprov-jdk15on</artifactId>
67-
<version>1.65</version>
67+
<version>1.70</version>
6868
</dependency>
6969
<dependency>
7070
<groupId>org.bouncycastle</groupId>
7171
<artifactId>bcpg-jdk15on</artifactId>
72-
<version>1.65</version>
72+
<version>1.70</version>
7373
</dependency>
7474
</dependencies>
7575
</project>

SendSafelyAPI/src/com/sendsafely/BasePackage.java

+14
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ public class BasePackage {
3131
private String packageOwner = "";
3232
private String packageParentId;
3333
private boolean allowReplyAll;
34+
private boolean packageContainsMessage;
3435

3536
/**
3637
* @returnType String
@@ -290,4 +291,17 @@ public boolean isAllowReplyAll() {
290291
public void setAllowReplyAll(boolean allowReplyAll) {
291292
this.allowReplyAll = allowReplyAll;
292293
}
294+
295+
/**
296+
* @description Returns boolean flag indicating if the package contains an encrypted message.
297+
* @returnType boolean
298+
* @return Flag representing if the package contains an encrypted message.
299+
*/
300+
public boolean getPackageContainsMessage() {
301+
return packageContainsMessage;
302+
}
303+
304+
public void setPackageContainsMessage(boolean packageContainsMessage) {
305+
this.packageContainsMessage = packageContainsMessage;
306+
}
293307
}

SendSafelyAPI/src/com/sendsafely/dto/response/PackageInformationResponse.java

+3
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ public class PackageInformationResponse extends BaseResponse {
2929
private String packageSender;
3030
private String packageParentId;
3131
private boolean allowReplyAll;
32+
private boolean packageContainsMessage;
3233

3334
public List<RecipientResponse> getRecipients() {
3435
return recipients;
@@ -157,5 +158,7 @@ public boolean isAllowReplyAll() {
157158
public void setAllowReplyAll(boolean allowReplyAll) {
158159
this.allowReplyAll = allowReplyAll;
159160
}
161+
public Boolean getPackageContainsMessage() { return packageContainsMessage; }
162+
public void setPackageContainsMessage(Boolean packageContainsMessage) { this.packageContainsMessage = packageContainsMessage; }
160163

161164
}

SendSafelyAPI/src/com/sendsafely/handlers/PackageInformationHandler.java

+1
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ protected Package convert(PackageInformationResponse obj)
9090
info.setPackageOwner(obj.getPackageSender());
9191
info.setPackageParentId(obj.getPackageParentId());
9292
info.setAllowReplyAll(obj.isAllowReplyAll());
93+
info.setPackageContainsMessage(obj.getPackageContainsMessage());
9394
return info;
9495
}
9596

0 commit comments

Comments
 (0)