Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for addOrderBy_Hostname_Asc (0.08 sec)

  1. src/main/java/org/codelibs/fess/app/service/WebAuthenticationService.java

                cb.query().docMeta().setId_Equal(webAuthenticationPager.id);
            }
            // TODO Long, Integer, String supported only.
            // setup condition
            cb.query().addOrderBy_Hostname_Asc();
            cb.query().addOrderBy_WebConfigId_Asc();
    
            // search
    
        }
    
        /**
         * Gets a list of web authentications for a specific web configuration.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/FileAuthenticationService.java

                cb.query().docMeta().setId_Equal(fileAuthenticationPager.id);
            }
            // TODO Long, Integer, String supported only.
    
            // setup condition
            cb.query().addOrderBy_Hostname_Asc();
    
            // search
    
        }
    
        /**
         * Retrieves all file authentication configurations associated with a specific file configuration.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsWebAuthenticationCQ.java

            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public BsWebAuthenticationCQ addOrderBy_Hostname_Asc() {
            regOBA("hostname");
            return this;
        }
    
        public BsWebAuthenticationCQ addOrderBy_Hostname_Desc() {
            regOBD("hostname");
            return this;
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 95.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsFileAuthenticationCQ.java

            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public BsFileAuthenticationCQ addOrderBy_Hostname_Asc() {
            regOBA("hostname");
            return this;
        }
    
        public BsFileAuthenticationCQ addOrderBy_Hostname_Desc() {
            regOBD("hostname");
            return this;
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 88.1K bytes
    - Viewed (0)
Back to top