Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for setFileConfigId (0.16 sec)

  1. src/main/java/org/codelibs/fess/es/config/bsentity/BsFileAuthentication.java

            this.createdTime = value;
        }
    
        public String getFileConfigId() {
            checkSpecifiedProperty("fileConfigId");
            return convertEmptyToNull(fileConfigId);
        }
    
        public void setFileConfigId(String value) {
            registerModifiedProperty("fileConfigId");
            this.fileConfigId = value;
        }
    
        public String getHostname() {
            checkSpecifiedProperty("hostname");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/bsbhv/BsFileAuthenticationBhv.java

                result.setCreatedBy(DfTypeUtil.toString(source.get("createdBy")));
                result.setCreatedTime(DfTypeUtil.toLong(source.get("createdTime")));
                result.setFileConfigId(DfTypeUtil.toString(source.get("fileConfigId")));
                result.setHostname(DfTypeUtil.toString(source.get("hostname")));
                result.setParameters(DfTypeUtil.toString(source.get("parameters")));
    Registered: Wed Jun 12 13:08:18 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

            setupEpg(_epgMap, et -> ((FileAuthentication) et).getFileConfigId(),
                    (et, vl) -> ((FileAuthentication) et).setFileConfigId(DfTypeUtil.toString(vl)), "fileConfigId");
            setupEpg(_epgMap, et -> ((FileAuthentication) et).getHostname(),
                    (et, vl) -> ((FileAuthentication) et).setHostname(DfTypeUtil.toString(vl)), "hostname");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.6K bytes
    - Viewed (0)
Back to top