Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for getProtocolScheme (0.08 seconds)

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

  1. src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/FileAuthenticationDbm.java

            setupEpg(_epgMap, et -> ((FileAuthentication) et).getPort(),
                    (et, vl) -> ((FileAuthentication) et).setPort(DfTypeUtil.toInteger(vl)), "port");
            setupEpg(_epgMap, et -> ((FileAuthentication) et).getProtocolScheme(),
                    (et, vl) -> ((FileAuthentication) et).setProtocolScheme(DfTypeUtil.toString(vl)), "protocolScheme");
            setupEpg(_epgMap, et -> ((FileAuthentication) et).getUpdatedBy(),
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 27 07:01:25 GMT 2025
    - 12.6K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/opensearch/config/exentity/WebAuthentication.java

            }
            if (StringUtil.isNotBlank(getAuthRealm())) {
                config.setRealm(getAuthRealm());
            }
    
            // AuthSchemeType の設定
            final String scheme = getProtocolScheme();
            if (Constants.BASIC.equals(scheme)) {
                config.setAuthSchemeType(AuthSchemeType.BASIC);
            } else if (Constants.DIGEST.equals(scheme)) {
                config.setAuthSchemeType(AuthSchemeType.DIGEST);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Jan 10 01:38:30 GMT 2026
    - 5.7K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/opensearch/config/exentity/FileConfig.java

                if (logger.isDebugEnabled()) {
                    logger.debug("FileAuthentication: " + fileAuth.getProtocolScheme() + " " + fileAuth.getHostname() + ":" + fileAuth.getPort()
                            + " " + fileAuth.getUsername());
                }
                if (Constants.SAMBA.equals(fileAuth.getProtocolScheme())) {
                    final SmbAuthentication smbAuth = new SmbAuthentication();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Nov 24 02:07:40 GMT 2025
    - 11.1K bytes
    - Click Count (0)
Back to Top