Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Output JWT for debugging
  • Loading branch information
gregorwolf committed Mar 16, 2020
1 parent 89520e3 commit 0711a52
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -79,7 +79,8 @@ public void onRead(final CdsReadEventContext context) {

try {
// Maybe needed to get the JWT: AuthenticatedUserClaimProvider.INSTANCE.getUserClaim()
String jwt = AuthenticatedUserClaimProvider.INSTANCE.getUserClaim();
String jwt = AuthenticatedUserClaimProvider.INSTANCE.getUserClaim();
System.out.println("JWT: " + jwt);
if (context.getCqn().limit().isPresent()) {
final CqnLimit limit = context.getCqn().limit().get();
final CqnValue rows = limit.rows();
Expand Down

0 comments on commit 0711a52

Please sign in to comment.