Skip to content

Commit 700d07e

Browse files
committed
adds EncryptedContentBearer interface
1 parent 53f4ef5 commit 700d07e

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
package com.microsoft.graph.core.models;
2+
3+
/**
4+
* Contains Decryptable content
5+
*/
6+
public interface EncryptedContentBearer<T extends DecryptableContent> {
7+
8+
/**
9+
* Sets encrypted content
10+
* @param encryptedContent encrypted content
11+
*/
12+
public void setEncryptedContent(T encryptedContent);
13+
14+
/**
15+
* Return encrypted content
16+
* @return encrypted content
17+
*/
18+
public T getEncryptedContent();
19+
20+
}

0 commit comments

Comments
 (0)