Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for parseJwtClaim (0.72 seconds)

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

                attributes.put("jwtsignature", jwtSignature);
    
                if (logger.isDebugEnabled()) {
                    logger.debug("attributes={}", attributes);
                }
                parseJwtClaim(jwtClaim, attributes);
    
                return new OpenIdConnectCredential(attributes);
            } catch (final IOException e) {
                if (logger.isDebugEnabled()) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Dec 14 01:18:25 GMT 2025
    - 16.5K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticatorTest.java

            authenticator.parseJwtClaim(jwtClaim, attributes);
    
            assertEquals(95.5, attributes.get("score"));
        }
    
        @Test
        public void test_parseJwtClaim_emptyObject() throws IOException {
            final String jwtClaim = "{}";
            final Map<String, Object> attributes = new HashMap<>();
    
            authenticator.parseJwtClaim(jwtClaim, attributes);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jan 15 12:54:47 GMT 2026
    - 11K bytes
    - Click Count (0)
Back to Top