You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sdk/keyvault/azure-security-keyvault-jca/src/main/java/com/azure/security/keyvault/jca/KeyVaultClient.java
Copy file name to clipboardExpand all lines: sdk/keyvault/azure-security-keyvault-jca/src/main/java/com/azure/security/keyvault/jca/KeyVaultKeyStore.java
Copy file name to clipboardExpand all lines: sdk/keyvault/azure-security-keyvault-jca/src/main/java/com/azure/security/keyvault/jca/model/SecretBundle.java
+23Lines changed: 23 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -14,12 +14,26 @@ public class SecretBundle implements Serializable {
14
14
* Stores the serial version UID.
15
15
*/
16
16
privatestaticfinallongserialVersionUID = 1L;
17
+
18
+
/**
19
+
* Stores the content type.
20
+
*/
21
+
privateStringcontentType;
17
22
18
23
/**
19
24
* Stores the value.
20
25
*/
21
26
privateStringvalue;
22
27
28
+
/**
29
+
* Get the content type.
30
+
*
31
+
* @return the content type.
32
+
*/
33
+
publicStringgetContentType() {
34
+
returncontentType;
35
+
}
36
+
23
37
/**
24
38
* Get the value.
25
39
*
@@ -28,6 +42,15 @@ public class SecretBundle implements Serializable {
0 commit comments