Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 78 for sambil (0.03 sec)

  1. src/test/java/org/codelibs/fess/helper/OsddHelperTest.java

                @Override
                public String getOsddLinkEnabled() {
                    return "auto";
                }
    
                @Override
                public String getSsoType() {
                    return "saml";
                }
            });
            final OsddHelper osddHelper = new OsddHelper();
            osddHelper.setOsddPath("osdd/osdd.xml");
            osddHelper.init();
            assertFalse(osddHelper.hasOpenSearchFile());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 23.9K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/exception/SsoProcessExceptionTest.java

            }
        }
    
        public void test_throwAndCatchWithCause() {
            // Test throwing and catching the exception with cause
            String expectedMessage = "SAML assertion validation failed";
            Exception expectedCause = new IllegalStateException("Invalid SAML response");
    
            try {
                throw new SsoProcessException(expectedMessage, expectedCause);
            } catch (SsoProcessException e) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/Constants.java

        public static final String NTLM = "NTLM";
    
        /** Form-based authentication type identifier. */
        public static final String FORM = "FORM";
    
        /** Samba authentication type identifier. */
        public static final String SAMBA = "SAMBA";
    
        /** FTP authentication type identifier. */
        public static final String FTP = "FTP";
    
        // ============================================================
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 34.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/opensearch/config/exentity/FileConfig.java

                            + " " + fileAuth.getUsername());
                }
                if (Constants.SAMBA.equals(fileAuth.getProtocolScheme())) {
                    final SmbAuthentication smbAuth = new SmbAuthentication();
                    final Map<String, String> map = ParameterUtil.parse(fileAuth.getParameters());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Apr 03 09:24:53 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/sso/SsoResponseType.java

     * such as metadata requests and logout actions.
     */
    public enum SsoResponseType {
        /**
         * Indicates a request for SSO metadata, which is typically used for
         * configuration and discovery in protocols like SAML.
         */
        METADATA,
    
        /**
         * Indicates a request to perform a logout operation, terminating the
         * user's SSO session.
         */
        LOGOUT;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  6. src/main/resources/fess_label_it.properties

    labels.index_lang=Lingua preferita
    labels.index_sort=Ordina
    labels.index_num=Numero di risultati
    labels.logout_title=Esci
    labels.logout=Esci
    labels.do_you_want_to_logout=Vuoi uscire?
    labels.logout_button=Esci
    labels.profile=Cambia password
    labels.administration=Amministrazione
    labels.profile_button=Impostazioni
    labels.profile.title= Impostazioni
    labels.profile.update= Aggiorna
    labels.profile.back= Indietro
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 43.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/util/ComponentUtil.java

         * @return The view helper.
         */
        public static ViewHelper getViewHelper() {
            return getComponent(VIEW_HELPER);
        }
    
        /**
         * Gets the Samba helper component.
         * @return The Samba helper.
         */
        public static SambaHelper getSambaHelper() {
            return getComponent(SAMBA_HELPER);
        }
    
        /**
         * Gets the query helper component.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 28.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/sso/SsoAction.java

                return redirect(LoginAction.class);
            }
        }
    
        /**
         * SSO metadata endpoint.
         *
         * This method handles requests for SSO metadata, typically used by SAML or
         * other SSO protocols that require metadata exchange. The actual metadata
         * content is generated by the configured SSO authenticator.
         *
         * @return ActionResponse containing the SSO metadata or error page
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/opensearch/config/exentity/DataConfig.java

                for (final String fileAuthName : fileAuthNames) {
                    final String scheme = paramMap.get(CRAWLER_FILE_AUTH + "." + fileAuthName + ".scheme");
                    if (Constants.SAMBA.equals(scheme)) {
                        final String domain = paramMap.get(CRAWLER_FILE_AUTH + "." + fileAuthName + ".domain");
                        final String hostname = paramMap.get(CRAWLER_FILE_AUTH + "." + fileAuthName + ".host");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18.6K bytes
    - Viewed (0)
  10. android/pom.xml

                <encoding>UTF-8</encoding>
                <docencoding>UTF-8</docencoding>
                <charset>UTF-8</charset>
                <additionalOptions>
                  <additionalOption>-XDignore.symbol.file</additionalOption>
                  <additionalOption>-Xdoclint:-html</additionalOption>
                </additionalOptions>
                <source>8</source>
              </configuration>
              <executions>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Sep 04 21:35:58 UTC 2025
    - 24.3K bytes
    - Viewed (0)
Back to top