We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53f4ef5 commit 700d07eCopy full SHA for 700d07e
src/main/java/com/microsoft/graph/core/models/EncryptedContentBearer.java
@@ -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