Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for jwtclaim (0.03 seconds)

  1. src/test/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticatorTest.java

            final String jwtClaim = "{\"score\":95.5}";
            final Map<String, Object> attributes = new HashMap<>();
    
            authenticator.parseJwtClaim(jwtClaim, attributes);
    
            assertEquals(95.5, attributes.get("score"));
        }
    
        @Test
        public void test_parseJwtClaim_emptyObject() throws IOException {
            final String jwtClaim = "{}";
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jan 15 12:54:47 GMT 2026
    - 11K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java

                final String jwtClaim = new String(decodeBase64(jwt[1]), Constants.UTF_8_CHARSET);
                final String jwtSignature = new String(decodeBase64(jwt[2]), Constants.UTF_8_CHARSET);
    
                if (logger.isDebugEnabled()) {
                    logger.debug("jwtHeader={}", jwtHeader);
                    logger.debug("jwtClaim={}", jwtClaim);
                    logger.debug("jwtSignature={}", jwtSignature);
    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)
Back to Top