There was an error while loading. Please reload this page.
1 parent 176dba7 commit 4bbfadcCopy full SHA for 4bbfadc
1 file changed
src/main/java/com/stacksync/commons/notifications/ShareProposalNotification.java
@@ -17,7 +17,7 @@ public class ShareProposalNotification extends Notification implements Serializa
17
protected String swiftURL;
18
protected boolean isEncrypted;
19
protected boolean abeEncrypted;
20
- protected HashMap<String,HashMap<String,byte[]>> emailsKeys;
+ protected HashMap<String,byte[]> keyStruct;
21
protected byte[] publicKey;
22
23
public ShareProposalNotification(UUID workspaceId, String folderName, Long itemId, UUID ownerId,
@@ -106,12 +106,12 @@ public void setAbeEncrypted(boolean abeEncrypted) {
106
this.abeEncrypted = abeEncrypted;
107
}
108
109
- public void setABEKeys(HashMap<String,HashMap<String,byte[]>> emailsKeys){
110
- this.emailsKeys=emailsKeys;
+ public void setABEKey(HashMap<String,byte[]> keyStruct){
+ this.keyStruct=keyStruct;
111
112
113
- public HashMap<String,HashMap<String,byte[]>> getABEKeys(){
114
- return emailsKeys;
+ public HashMap<String,byte[]> getABEKey(){
+ return keyStruct;
115
116
117
public byte[] getPublicKey() {
0 commit comments