Commit 84ef390
File tree
4 files changed
+101
-7
lines changed- msal/src/main/java/com/microsoft/identity/client
4 files changed
+101
-7
lines changed- common/src/main/java/com/microsoft/identity/common/WarningType.java+8
- common/src/main/java/com/microsoft/identity/common/adal/internal/AuthenticationSettings.java+2-1
- common/src/main/java/com/microsoft/identity/common/adal/internal/tokensharing/ITokenShareInternal.java+22
- common/src/main/java/com/microsoft/identity/common/adal/internal/tokensharing/ITokenShareResultInternal.java+69
- common/src/main/java/com/microsoft/identity/common/adal/internal/tokensharing/TokenShareResultInternal.java+64
- common/src/main/java/com/microsoft/identity/common/adal/internal/tokensharing/TokenShareUtility.java+34-10
- common/src/main/java/com/microsoft/identity/common/internal/authorities/ActiveDirectoryFederationServicesAuthority.java+3
- common/src/main/java/com/microsoft/identity/common/internal/authorities/Authority.java+3
- common/src/main/java/com/microsoft/identity/common/internal/authorities/AzureActiveDirectoryAuthority.java+3
- common/src/main/java/com/microsoft/identity/common/internal/authorities/AzureActiveDirectoryB2CAuthority.java+3
- common/src/main/java/com/microsoft/identity/common/internal/authorities/UnknownAuthority.java+3
- common/src/main/java/com/microsoft/identity/common/internal/cache/ADALOAuth2TokenCache.java+3
- common/src/main/java/com/microsoft/identity/common/internal/cache/BrokerOAuth2TokenCache.java+3-1
- common/src/main/java/com/microsoft/identity/common/internal/cache/IAccountCredentialAdapter.java+3
- common/src/main/java/com/microsoft/identity/common/internal/cache/MicrosoftFamilyOAuth2TokenCache.java+3
- common/src/main/java/com/microsoft/identity/common/internal/cache/MsalCppOAuth2TokenCache.java+3
- common/src/main/java/com/microsoft/identity/common/internal/cache/MsalOAuth2TokenCache.java+3-1
- common/src/main/java/com/microsoft/identity/common/internal/commands/BaseCommand.java+3
- common/src/main/java/com/microsoft/identity/common/internal/commands/DeviceCodeFlowCommand.java+4-1
- common/src/main/java/com/microsoft/identity/common/internal/commands/GetCurrentAccountCommand.java+3-2
- common/src/main/java/com/microsoft/identity/common/internal/commands/GetDeviceModeCommand.java+3-2
- common/src/main/java/com/microsoft/identity/common/internal/commands/InteractiveTokenCommand.java+3-2
- common/src/main/java/com/microsoft/identity/common/internal/commands/LoadAccountCommand.java+3-2
- common/src/main/java/com/microsoft/identity/common/internal/commands/RemoveAccountCommand.java+3-2
- common/src/main/java/com/microsoft/identity/common/internal/commands/RemoveCurrentAccountCommand.java+3-2
- common/src/main/java/com/microsoft/identity/common/internal/commands/SilentTokenCommand.java+3-2
- common/src/main/java/com/microsoft/identity/common/internal/commands/TokenCommand.java+3-2
- common/src/main/java/com/microsoft/identity/common/internal/commands/parameters/CommandParameters.java+3
- common/src/main/java/com/microsoft/identity/common/internal/controllers/BaseController.java+18-10
- common/src/main/java/com/microsoft/identity/common/internal/controllers/BrokerMsalController.java+5-2
- common/src/main/java/com/microsoft/identity/common/internal/controllers/CommandDispatcher.java+8-5
- common/src/main/java/com/microsoft/identity/common/internal/controllers/CommandResultCache.java+5-2
- common/src/main/java/com/microsoft/identity/common/internal/controllers/ExceptionAdapter.java+3
- common/src/main/java/com/microsoft/identity/common/internal/controllers/LocalMSALController.java+14-1
- common/src/main/java/com/microsoft/identity/common/internal/eststelemetry/EstsTelemetry.java+4-3
- common/src/main/java/com/microsoft/identity/common/internal/migration/TokenCacheItemMigrationAdapter.java+3-2
- common/src/main/java/com/microsoft/identity/common/internal/providers/IdentityProvider.java+3
- common/src/main/java/com/microsoft/identity/common/internal/providers/microsoft/MicrosoftAuthorizationRequest.java+2-1
- common/src/main/java/com/microsoft/identity/common/internal/providers/microsoft/activedirectoryfederationservices/ActiveDirectoryFederationServices2012R2OAuth2Strategy.java+3
- common/src/main/java/com/microsoft/identity/common/internal/providers/microsoft/activedirectoryfederationservices/ActiveDirectoryFederationServices2016OAuth2Strategy.java+3
- common/src/main/java/com/microsoft/identity/common/internal/providers/microsoft/azureactivedirectory/AzureActiveDirectoryAuthorizationRequest.java+3
- common/src/main/java/com/microsoft/identity/common/internal/providers/microsoft/azureactivedirectory/AzureActiveDirectoryOAuth2Strategy.java+3
- common/src/main/java/com/microsoft/identity/common/internal/providers/microsoft/azureactivedirectoryb2c/AzureActiveDirectoryB2COAuth2Strategy.java+3
- common/src/main/java/com/microsoft/identity/common/internal/providers/microsoft/microsoftsts/MicrosoftStsOAuth2Strategy.java+3
- common/src/main/java/com/microsoft/identity/common/internal/providers/oauth2/AuthorizationRequest.java+3-1
- common/src/main/java/com/microsoft/identity/common/internal/providers/oauth2/AuthorizationResultFactory.java+4
- common/src/main/java/com/microsoft/identity/common/internal/providers/oauth2/AuthorizationStrategy.java+3
- common/src/main/java/com/microsoft/identity/common/internal/providers/oauth2/OAuth2Strategy.java+3
- common/src/main/java/com/microsoft/identity/common/internal/providers/oauth2/OAuth2TokenCache.java+3
- common/src/main/java/com/microsoft/identity/common/internal/result/AcquireTokenResult.java+7-1
- common/src/main/java/com/microsoft/identity/common/internal/ui/AuthorizationStrategyFactory.java+3
- common/src/main/java/com/microsoft/identity/common/internal/ui/browser/BrowserAuthorizationStrategy.java+3
- common/src/main/java/com/microsoft/identity/common/internal/ui/webview/EmbeddedWebViewAuthorizationStrategy.java+3
Lines changed: 13 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
24 | 24 | | |
25 | 25 | | |
26 | 26 | | |
| 27 | + | |
27 | 28 | | |
28 | 29 | | |
29 | 30 | | |
30 | 31 | | |
31 | 32 | | |
32 | 33 | | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
33 | 40 | | |
34 | 41 | | |
35 | 42 | | |
| |||
42 | 49 | | |
43 | 50 | | |
44 | 51 | | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
45 | 58 | | |
46 | 59 | | |
47 | 60 | | |
| |||
Lines changed: 19 additions & 6 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
48 | 48 | | |
49 | 49 | | |
50 | 50 | | |
51 | | - | |
52 | 51 | | |
53 | 52 | | |
54 | 53 | | |
55 | 54 | | |
| 55 | + | |
56 | 56 | | |
57 | 57 | | |
58 | 58 | | |
| |||
68 | 68 | | |
69 | 69 | | |
70 | 70 | | |
71 | | - | |
72 | 71 | | |
| 72 | + | |
73 | 73 | | |
74 | 74 | | |
75 | 75 | | |
| |||
80 | 80 | | |
81 | 81 | | |
82 | 82 | | |
| 83 | + | |
83 | 84 | | |
84 | 85 | | |
85 | 86 | | |
| |||
1132 | 1133 | | |
1133 | 1134 | | |
1134 | 1135 | | |
1135 | | - | |
| 1136 | + | |
1136 | 1137 | | |
1137 | 1138 | | |
1138 | 1139 | | |
1139 | 1140 | | |
1140 | | - | |
| 1141 | + | |
| 1142 | + | |
1141 | 1143 | | |
1142 | 1144 | | |
1143 | 1145 | | |
| |||
1147 | 1149 | | |
1148 | 1150 | | |
1149 | 1151 | | |
| 1152 | + | |
| 1153 | + | |
| 1154 | + | |
| 1155 | + | |
| 1156 | + | |
1150 | 1157 | | |
1151 | 1158 | | |
1152 | 1159 | | |
| |||
1164 | 1171 | | |
1165 | 1172 | | |
1166 | 1173 | | |
1167 | | - | |
| 1174 | + | |
1168 | 1175 | | |
1169 | 1176 | | |
1170 | 1177 | | |
1171 | 1178 | | |
1172 | | - | |
| 1179 | + | |
| 1180 | + | |
1173 | 1181 | | |
1174 | 1182 | | |
1175 | 1183 | | |
| |||
1179 | 1187 | | |
1180 | 1188 | | |
1181 | 1189 | | |
| 1190 | + | |
| 1191 | + | |
| 1192 | + | |
| 1193 | + | |
| 1194 | + | |
1182 | 1195 | | |
1183 | 1196 | | |
1184 | 1197 | | |
| |||
Lines changed: 68 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
0 commit comments