- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for OpenID (0.03 sec)
-
src/main/java/org/codelibs/fess/app/web/base/login/OpenIdConnectCredential.java
import org.lastaflute.web.login.credential.LoginCredential; /** * OpenID Connect credential implementation. */ public class OpenIdConnectCredential implements LoginCredential, FessCredential { private final Map<String, Object> attributes; /** * Creates a new OpenID Connect credential. * * @param attributes the attributes from OpenID Connect provider */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java
protected static final String OIC_REDIRECT_URL = "oic.redirect.url"; /** Configuration key for OpenID Connect token server URL. */ protected static final String OIC_TOKEN_SERVER_URL = "oic.token.server.url"; /** Configuration key for OpenID Connect client secret. */ protected static final String OIC_CLIENT_SECRET = "oic.client.secret";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java
import com.nimbusds.jwt.JWTParser; import com.nimbusds.oauth2.sdk.AuthorizationCode; import com.nimbusds.openid.connect.sdk.AuthenticationErrorResponse; import com.nimbusds.openid.connect.sdk.AuthenticationResponse; import com.nimbusds.openid.connect.sdk.AuthenticationResponseParser; import com.nimbusds.openid.connect.sdk.AuthenticationSuccessResponse; import jakarta.annotation.PostConstruct;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 28 09:13:08 UTC 2025 - 37.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/InvalidAccessTokenExceptionTest.java
} public void test_variousTokenTypes() { // Test with various common token types String[] tokenTypes = { "Bearer", "JWT", "OAuth", "OAuth2", "APIKey", "Session", "Basic", "Digest", "SAML", "OpenID" }; for (String tokenType : tokenTypes) { String message = tokenType + " token is invalid"; InvalidAccessTokenException exception = new InvalidAccessTokenException(tokenType, message);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/sso/SsoManagerTest.java
assertEquals(0, authenticators.length); } // Test getSsoType() with actual FessConfig public void test_getSsoType_withFessConfig() { final String expectedSsoType = "openid"; FessConfig fessConfig = new FessConfig.SimpleImpl() { @Override public String getSsoType() { return expectedSsoType; } };
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13.9K bytes - Viewed (0)