public JwtClaimsDto getUserClaims()

in src/main/java/com/epam/digital/data/platform/bphistory/service/api/service/JwtInfoProvider.java [34:40]


  public JwtClaimsDto getUserClaims(String token) {
    try {
      return tokenParser.parseClaims(token);
    } catch (JwtParsingException e) {
      throw new JwtValidationException("Error while getting JWT claims", e);
    }
  }