Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for iat (0.01 seconds)

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

        public void test_parseJwtClaim_numericValues() throws IOException {
            final String jwtClaim = "{\"iat\":1609459200,\"exp\":1609462800,\"nbf\":1609459200}";
            final Map<String, Object> attributes = new HashMap<>();
    
            authenticator.parseJwtClaim(jwtClaim, attributes);
    
            assertEquals(1609459200L, attributes.get("iat"));
            assertEquals(1609462800L, attributes.get("exp"));
    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