Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for getProtocolScheme (0.71 sec)

  1. 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();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Apr 03 09:24:53 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/opensearch/config/exentity/WebAuthentication.java

        public Authentication getAuthentication() {
            return new AuthenticationImpl(getAuthScope(), getCredentials(), getAuthScheme());
        }
    
        private AuthScheme getAuthScheme() {
            final String scheme = getProtocolScheme();
            if (Constants.BASIC.equals(scheme)) {
                return new BasicScheme();
            }
            if (Constants.DIGEST.equals(scheme)) {
                return new DigestScheme();
            }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/WebAuthenticationDbm.java

            setupEpg(_epgMap, et -> ((WebAuthentication) et).getPort(), (et, vl) -> ((WebAuthentication) et).setPort(DfTypeUtil.toInteger(vl)),
                    "port");
            setupEpg(_epgMap, et -> ((WebAuthentication) et).getProtocolScheme(),
                    (et, vl) -> ((WebAuthentication) et).setProtocolScheme(DfTypeUtil.toString(vl)), "protocolScheme");
            setupEpg(_epgMap, et -> ((WebAuthentication) et).getUpdatedBy(),
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  4. 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(),
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsFileAuthentication.java

            return port;
        }
    
        public void setPort(Integer value) {
            registerModifiedProperty("port");
            this.port = value;
        }
    
        public String getProtocolScheme() {
            checkSpecifiedProperty("protocolScheme");
            return convertEmptyToNull(protocolScheme);
        }
    
        public void setProtocolScheme(String value) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 8.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsWebAuthentication.java

            return port;
        }
    
        public void setPort(Integer value) {
            registerModifiedProperty("port");
            this.port = value;
        }
    
        public String getProtocolScheme() {
            checkSpecifiedProperty("protocolScheme");
            return convertEmptyToNull(protocolScheme);
        }
    
        public void setProtocolScheme(String value) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 9K bytes
    - Viewed (0)
Back to top