Skip to content

Commit

Permalink
Add tenantId requirement on roll-up client
Browse files Browse the repository at this point in the history
  • Loading branch information
jianghaolu committed Sep 13, 2016
1 parent 7d1f0d8 commit 7b325e2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@ public String getClientId() {
*
* @return the tenant or domain the containing the application.
*/
@Override
public String getDomain() {
return domain;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ public String getClientId() {
*
* @return the tenant or domain the containing the application.
*/
@Override
public String getDomain() {
return domain;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
public interface AzureTokenCredentials extends ServiceClientCredentials {
String getToken(String resource) throws IOException;

String getDomain();

/**
* @return the environment details the credential has access to.
*/
Expand Down

0 comments on commit 7b325e2

Please sign in to comment.