Skip to content

Commit c28f032

Browse files
author
sgonzalezMSFT
committed
PR feedback round 2
1 parent 84d4e16 commit c28f032

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

src/main/java/com/microsoft/aad/msal4j/DeviceCode.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
public final class DeviceCode {
1919

2020
/**
21-
* code which user needs to provide when authenticating at he verification URI
21+
* code which user needs to provide when authenticating at the verification URI
2222
*/
2323
@SerializedName("user_code")
2424
private String userCode;

src/main/java/com/microsoft/aad/msal4j/IConfidentialClientApplication.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public interface IConfidentialClientApplication extends IClientApplicationBase {
1515

1616
/**
1717
* Acquires tokens from the authority configured in the application, for the confidential client
18-
* itself (in the name of no user)
18+
* itself
1919
* @param parameters instance of {@link ClientCredentialParameters}
2020
* @return {@link CompletableFuture} containing an {@link IAuthenticationResult}
2121
*/

src/main/java/com/microsoft/aad/msal4j/ITokenCacheAccessContext.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
package com.microsoft.aad.msal4j;
55

66
/**
7-
* Interface representing state of token cache
7+
* Interface representing context in which the token cache is accessed
88
*/
99
public interface ITokenCacheAccessContext {
1010

src/main/java/com/microsoft/aad/msal4j/IUserAssertion.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
package com.microsoft.aad.msal4j;
55

66
/**
7-
* Interface representing user credential used by downstream application in On-Behalf-Of flow
7+
* Interface representing a delegated user identity used by downstream applications in On-Behalf-Of flow
88
*/
99
public interface IUserAssertion {
1010

src/main/java/com/microsoft/aad/msal4j/TokenCacheAccessContext.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import lombok.experimental.Accessors;
99

1010
/**
11-
* State of token cache
11+
* Context in which the the token cache is accessed
1212
*/
1313
@Builder
1414
@Accessors(fluent = true)

src/main/java/com/microsoft/aad/msal4j/UserAssertion.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
package com.microsoft.aad.msal4j;
55

66
/***
7-
* Credential type containing an assertion representing user credential. Used as a parameter in
8-
* {@link OnBehalfOfParameters}
7+
* Credential type containing an assertion representing a delegated user identity.
8+
* Used as a parameter in {@link OnBehalfOfParameters}
99
*/
1010
public class UserAssertion implements IUserAssertion {
1111

0 commit comments

Comments
 (0)