Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for createJsonParser (0.07 sec)

  1. src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java

            }
            return null;
        }
    
        protected void parseJwtClaim(final String jwtClaim, final Map<String, Object> attributes) throws IOException {
            try (final JsonParser jsonParser = jsonFactory.createJsonParser(jwtClaim)) {
                while (jsonParser.nextToken() != JsonToken.END_OBJECT) {
                    final String name = jsonParser.getCurrentName();
                    if (name != null) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top