File tree Expand file tree Collapse file tree 1 file changed +34
-0
lines changed
src/main/java/com/microsoft/graph/core/models Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Original file line number Diff line number Diff line change 1+ package com .microsoft .graph .core .models ;
2+
3+ import java .util .List ;
4+
5+ /**
6+ * TokenValidatable interface
7+ */
8+ public interface TokenValidatable <U extends DecryptableContent , T extends EncryptedContentBearer <U >> {
9+
10+ /**
11+ * Sets collection of validation tokens
12+ * @param validationTokens tokens
13+ */
14+ public void setValidationTokens (List <String > validationTokens );
15+
16+ /**
17+ * Returns validation tokens
18+ * @return list of tokens
19+ */
20+ public List <String > getValidationTokens ();
21+
22+ /**
23+ * Sets collection of encrypted token bearers
24+ * @param value collection of encrypted token bearers
25+ */
26+ public void setValue (List <T > value );
27+
28+ /**
29+ * Get collection of encrypted token bearers
30+ * @return encrypted token bearers
31+ */
32+ public List <T > getValue ();
33+
34+ }
You can’t perform that action at this time.
0 commit comments