Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 30 for spnego (0.03 seconds)

  1. src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java

        protected static final String SPNEGO_LOGIN_CONF = "spnego.login.conf";
    
        /** Configuration key for SPNEGO logger level. */
        protected static final String SPNEGO_LOGGER_LEVEL = "spnego.logger.level";
    
        /** The underlying SPNEGO authenticator instance. */
        protected org.codelibs.spnego.SpnegoAuthenticator authenticator = null;
    
        /**
         * Constructs a new SPNEGO authenticator.
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 08:18:23 GMT 2026
    - 18.2K bytes
    - Click Count (3)
  2. src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java

            // SPNEGO
            fessConfig.setSystemProperty("spnego.krb5.conf", form.spnegoKrb5Conf);
            fessConfig.setSystemProperty("spnego.login.conf", form.spnegoLoginConf);
            fessConfig.setSystemProperty("spnego.login.client.module", form.spnegoLoginClientModule);
            fessConfig.setSystemProperty("spnego.login.server.module", form.spnegoLoginServerModule);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 05:54:31 GMT 2026
    - 27.2K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/app/web/base/login/SpnegoCredential.java

    import org.lastaflute.web.login.credential.LoginCredential;
    
    /**
     * SPNEGO authentication credential implementation.
     *
     * This class represents login credentials obtained through SPNEGO (Security Provider
     * Negotiation Protocol) authentication. It contains the username extracted from the
     * SPNEGO authentication process, typically from a Kerberos ticket.
     */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 1.9K bytes
    - Click Count (1)
  4. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

        /** SPNEGO JAAS login server module name. */
        @Size(max = 1000)
        public String spnegoLoginServerModule;
    
        /** SPNEGO pre-authentication username. */
        @Size(max = 1000)
        public String spnegoPreauthUsername;
    
        /** SPNEGO pre-authentication password. */
        @Size(max = 1000)
        public String spnegoPreauthPassword;
    
        /** Enable or disable SPNEGO basic authentication. */
        @Size(max = 10)
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 15.8K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticatorTest.java

            // SPNEGO logout should return null (relies on Kerberos infrastructure)
            String logoutUrl = authenticator.logout(null);
            assertNull(logoutUrl);
        }
    
        @Test
        public void test_nullSafeGetResponse() {
            SpnegoAuthenticator authenticator = new SpnegoAuthenticator();
    
            // SPNEGO typically doesn't provide special response handling
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 4.8K bytes
    - Click Count (0)
  6. CLAUDE.md

    - Web, file system, and data store crawling
    - Multi-format document support (Office, PDF, etc.)
    - Admin GUI for configuration
    - REST API for programmatic access
    - SSO integration (OIDC, SAML, SPNEGO, Entra ID)
    - i18n support (20+ languages)
    
    ## Tech Stack
    
    | Component | Technology |
    |-----------|------------|
    | Web Framework | LastaFlute (MVC framework) |
    | DI Container | Lasta Di |
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 09:48:10 GMT 2026
    - 7.8K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/sso/SsoAuthenticator.java

     *
     * This interface defines the contract for SSO authentication providers that can be
     * integrated with Fess. Implementations handle specific SSO protocols like SAML,
     * OAuth, SPNEGO, or other authentication mechanisms. Each authenticator is responsible
     * for obtaining login credentials, resolving user information, and managing SSO
     * lifecycle operations like logout and metadata exchange.
     */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 2.2K bytes
    - Click Count (1)
  8. src/main/webapp/WEB-INF/view/admin/general/admin_general.jsp

                                                <la:option value="saml">SAML</la:option>
                                                <la:option value="spnego">SPNEGO</la:option>
                                                <la:option value="entraid">Entra ID</la:option>
                                            </la:select>
                                        </div>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 83.1K bytes
    - Click Count (0)
  9. src/main/resources/fess_label_en.properties

    labels.saml_attribute_group_name=Group Attribute Name
    labels.saml_attribute_role_name=Role Attribute Name
    labels.saml_default_groups=Default Groups
    labels.saml_default_roles=Default Roles
    labels.general_menu_spnego=SPNEGO
    labels.spnego_krb5_conf=Krb5 Config
    labels.spnego_login_conf=Login Config
    labels.spnego_login_client_module=Login Client Module
    labels.spnego_login_server_module=Login Server Module
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 48.9K bytes
    - Click Count (0)
  10. src/main/resources/fess_sso++.xml

    	</component>
    	<component name="samlAuthenticator" class="org.codelibs.fess.sso.saml.SamlAuthenticator">
    	</component>
    	<component name="spnegoAuthenticator" class="org.codelibs.fess.sso.spnego.SpnegoAuthenticator">
    	</component>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 27 07:33:53 GMT 2025
    - 612 bytes
    - Click Count (0)
Back to Top