GUACAMOLE-210: Add missing comment.
Project: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/commit/faa32782 Tree: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/tree/faa32782 Diff: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/diff/faa32782 Branch: refs/heads/master Commit: faa327824beca658cbf0cb199d1bf049921b03a9 Parents: 9159ca4 Author: Michael Jumper <[email protected]> Authored: Mon Jun 13 02:19:05 2016 -0700 Committer: Michael Jumper <[email protected]> Committed: Mon Sep 25 13:06:43 2017 -0700 ---------------------------------------------------------------------- .../apache/guacamole/auth/oauth/token/TokenValidationService.java | 3 +++ 1 file changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/blob/faa32782/extensions/guacamole-auth-openid/src/main/java/org/apache/guacamole/auth/oauth/token/TokenValidationService.java ---------------------------------------------------------------------- diff --git a/extensions/guacamole-auth-openid/src/main/java/org/apache/guacamole/auth/oauth/token/TokenValidationService.java b/extensions/guacamole-auth-openid/src/main/java/org/apache/guacamole/auth/oauth/token/TokenValidationService.java index a61f7ce..84bfa3d 100644 --- a/extensions/guacamole-auth-openid/src/main/java/org/apache/guacamole/auth/oauth/token/TokenValidationService.java +++ b/extensions/guacamole-auth-openid/src/main/java/org/apache/guacamole/auth/oauth/token/TokenValidationService.java @@ -38,6 +38,9 @@ import org.jose4j.keys.resolvers.HttpsJwksVerificationKeyResolver; */ public class TokenValidationService { + /** + * Service for retrieving OAuth configuration information. + */ @Inject private ConfigurationService confService;
