smolnar82 commented on code in PR #839: URL: https://github.com/apache/knox/pull/839#discussion_r1475739324
########## gateway-provider-security-jwt/src/main/java/org/apache/knox/gateway/provider/federation/jwt/filter/AbstractJWTFilter.java: ########## @@ -381,11 +390,29 @@ protected boolean validateToken(final HttpServletRequest request, final HttpServ return false; } - private boolean isTokenEnabled(String tokenId) throws UnknownTokenException { - final TokenMetadata tokenMetadata = tokenStateService == null ? null : tokenStateService.getTokenMetadata(tokenId); + private boolean isTokenEnabled(TokenMetadata tokenMetadata) throws UnknownTokenException { return tokenMetadata == null ? true : tokenMetadata.isEnabled(); } + private boolean isNotIdle(TokenMetadata tokenMetadata) throws UnknownTokenException { Review Comment: Changed to `isIdleTimeoutLimitNotExceeded` (I'm also in favor of using method names that do not need to negate, if possible). -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@knox.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org