Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for OptionalEntity (0.3 sec)

  1. src/main/java/org/codelibs/fess/ldap/LdapManager.java

         */
        public OptionalEntity<FessUser> login(final String username, final String password) {
            // Add defensive null/blank checks
            if (StringUtil.isBlank(username) || StringUtil.isBlank(password)) {
                if (logger.isDebugEnabled()) {
                    logger.debug("Login failed: username or password is blank");
                }
                return OptionalEntity.empty();
            }
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 86.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticator.java

    import org.codelibs.fess.sso.SsoResponseType;
    import org.codelibs.fess.util.ComponentUtil;
    import org.codelibs.fess.util.DocumentUtil;
    import org.codelibs.opensearch.runner.net.OpenSearchCurl;
    import org.dbflute.optional.OptionalEntity;
    import org.dbflute.optional.OptionalThing;
    import org.lastaflute.web.login.credential.LoginCredential;
    import org.lastaflute.web.response.ActionResponse;
    import org.lastaflute.web.response.HtmlResponse;
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 56.7K bytes
    - Viewed (0)
Back to top