Skip to content

Commit d05494f

Browse files
BRIAN HOLYFIELDBRIAN HOLYFIELD
authored andcommitted
Remove Support for Topics
Remove Support for Topics
1 parent 6835c96 commit d05494f

File tree

6 files changed

+3
-63
lines changed

6 files changed

+3
-63
lines changed

SampleApplication/src/SendSafelyRefApp.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public static void main(String[] args) throws SendFailedException, IOException,
2626
* UserApiSecret: The API Secret associated with the API Key used above. The API Secret is provided to
2727
* you when you generate a new API Key.
2828
*
29-
* FileToUpload: Local path to the file you want to upload. Can be any file up to 2GB in size.
29+
* FileToUpload: Local path to the file you want to upload.
3030
*
3131
* RecipientEmailAddress: The email address of the person you want to send the file to.
3232
*/

SendSafelyAPI/src/com/sendsafely/dto/request/AddMessageToTopicRequest.java

Lines changed: 0 additions & 31 deletions
This file was deleted.

SendSafelyAPI/src/com/sendsafely/dto/request/GetTopicRequest.java

Lines changed: 0 additions & 27 deletions
This file was deleted.

SendSafelyAPI/src/com/sendsafely/enums/Endpoint.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ public enum Endpoint {
2020
ADD_MESSAGE,
2121
FINALIZE_PACKAGE,
2222
ADD_PHONENUMBER,
23-
FILE_HISTORY,
24-
ADD_TOPIC;
23+
FILE_HISTORY
2524

2625
}

SendSafelyAPI/src/com/sendsafely/enums/GetParam.java

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

33
public enum GetParam {
44

5-
PACKAGE_ID, PACKAGE_CODE, FILE_ID, API, VERSION_NO, RECIPIENT_ID, TOPIC_ID, CHECKSUM, PUBLIC_KEY_ID;
5+
PACKAGE_ID, PACKAGE_CODE, FILE_ID, API, VERSION_NO, RECIPIENT_ID, CHECKSUM, PUBLIC_KEY_ID;
66

77
}

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,6 @@ protected Package convert(PackageInformationResponse obj)
8585
info.setPackageCode(obj.getPackageCode());
8686
info.setPackageId(obj.getPackageId());
8787
info.setRecipients(convertRecipients(obj.getRecipients()));
88-
//info.setTopics(obj.getTopics());
8988
info.setServerSecret(obj.getServerSecret());
9089
info.setState(obj.getState());
9190
return info;

0 commit comments

Comments
 (0)