Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 23 for spnego (0.04 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pom.xml

    			<groupId>org.codelibs</groupId>
    			<artifactId>curl4j</artifactId>
    			<version>${curl4j.version}</version>
    		</dependency>
    		<dependency>
    			<groupId>org.codelibs</groupId>
    			<artifactId>spnego</artifactId>
    			<version>${spnego.version}</version>
    		</dependency>
    		<dependency>
    			<groupId>commons-codec</groupId>
    			<artifactId>commons-codec</artifactId>
    			<version>${commons.codec.version}</version>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 07:04:54 GMT 2026
    - 49.9K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/systeminfo/AdminSysteminfoAction.java

         */
        protected static boolean isMaskedValue(final String key) {
            return "http.proxy.password".equals(key) //
                    || "ldap.admin.security.credentials".equals(key) //
                    || "spnego.preauth.password".equals(key) //
                    || "app.cipher.key".equals(key) //
                    || "oic.client.id".equals(key) //
                    || "oic.client.secret".equals(key);
        }
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 9.7K bytes
    - Click Count (0)
Back to Top