Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getProcessType (0.05 seconds)

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

            return createdTime;
        }
    
        public void setCreatedTime(Long value) {
            registerModifiedProperty("createdTime");
            this.createdTime = value;
        }
    
        public String getProcessType() {
            checkSpecifiedProperty("processType");
            return convertEmptyToNull(processType);
        }
    
        public void setProcessType(String value) {
            registerModifiedProperty("processType");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 7.6K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/PathMappingDbm.java

            setupEpg(_epgMap, et -> ((PathMapping) et).getCreatedTime(), (et, vl) -> ((PathMapping) et).setCreatedTime(DfTypeUtil.toLong(vl)),
                    "createdTime");
            setupEpg(_epgMap, et -> ((PathMapping) et).getProcessType(), (et, vl) -> ((PathMapping) et).setProcessType(DfTypeUtil.toString(vl)),
                    "processType");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 27 07:01:25 GMT 2025
    - 11.3K bytes
    - Click Count (0)
Back to Top