Skip to content

Commit e814ca9

Browse files
authored
Allow access to client secret and certificate (#678)
1 parent dc4bdb2 commit e814ca9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

azure-client-authentication/src/main/java/com/microsoft/azure/credentials/ApplicationTokenCredentials.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -128,15 +128,15 @@ public String clientId() {
128128
return clientId;
129129
}
130130

131-
String clientSecret() {
131+
public String clientSecret() {
132132
return clientSecret;
133133
}
134134

135-
byte[] clientCertificate() {
135+
public byte[] clientCertificate() {
136136
return clientCertificate;
137137
}
138138

139-
String clientCertificatePassword() {
139+
public String clientCertificatePassword() {
140140
return clientCertificatePassword;
141141
}
142142

0 commit comments

Comments
 (0)