Skip to content

Commit 8c53e90

Browse files
committed
Add comment
1 parent e4b20fd commit 8c53e90

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/main/java/gov/cms/ab2d/contracts/service/HPMSAuthServiceImpl.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,8 +194,10 @@ private String prepareErrorMessage(WebClientResponseException exception, long cu
194194
private static class HPMSAuthContext {
195195
private final String authToken;
196196
private final String cookies;
197-
private final long tokenRefreshAfter;
197+
/** time when token expires */
198198
private final long tokenExpires;
199+
/** time when we should refresh another token */
200+
private final long tokenRefreshAfter;
199201

200202
public static HPMSAuthContext emptyContext() {
201203
return new HPMSAuthContext("", "", 0L, 0L);

0 commit comments

Comments
 (0)