Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for setProtocolScheme (0.1 sec)

  1. src/main/java/org/codelibs/fess/es/config/bsbhv/BsFileAuthenticationBhv.java

                result.setPassword(DfTypeUtil.toString(source.get("password")));
                result.setPort(DfTypeUtil.toInteger(source.get("port")));
                result.setProtocolScheme(DfTypeUtil.toString(source.get("protocolScheme")));
                result.setUpdatedBy(DfTypeUtil.toString(source.get("updatedBy")));
                result.setUpdatedTime(DfTypeUtil.toLong(source.get("updatedTime")));
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/bsbhv/BsWebAuthenticationBhv.java

                result.setPassword(DfTypeUtil.toString(source.get("password")));
                result.setPort(DfTypeUtil.toInteger(source.get("port")));
                result.setProtocolScheme(DfTypeUtil.toString(source.get("protocolScheme")));
                result.setUpdatedBy(DfTypeUtil.toString(source.get("updatedBy")));
                result.setUpdatedTime(DfTypeUtil.toLong(source.get("updatedTime")));
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/FileAuthenticationDbm.java

                    (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(),
                    (et, vl) -> ((FileAuthentication) et).setUpdatedBy(DfTypeUtil.toString(vl)), "updatedBy");
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/WebAuthenticationDbm.java

                    "port");
            setupEpg(_epgMap, et -> ((WebAuthentication) et).getProtocolScheme(),
                    (et, vl) -> ((WebAuthentication) et).setProtocolScheme(DfTypeUtil.toString(vl)), "protocolScheme");
            setupEpg(_epgMap, et -> ((WebAuthentication) et).getUpdatedBy(),
                    (et, vl) -> ((WebAuthentication) et).setUpdatedBy(DfTypeUtil.toString(vl)), "updatedBy");
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top