Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setQueryId_Equal (0.05 sec)

  1. src/main/java/org/codelibs/fess/opensearch/log/cbean/cq/bs/BsFavoriteLogCQ.java

        }
    
        public BsFavoriteLogCQ addOrderBy_DocId_Desc() {
            regOBD("docId");
            return this;
        }
    
        public void setQueryId_Equal(String queryId) {
            setQueryId_Term(queryId, null);
        }
    
        public void setQueryId_Equal(String queryId, ConditionOptionCall<TermQueryBuilder> opLambda) {
            setQueryId_Term(queryId, opLambda);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 42.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

                    try {
                        final SearchLogBhv searchLogBhv = ComponentUtil.getComponent(SearchLogBhv.class);
                        searchLogBhv.selectEntity(cb -> {
                            cb.query().setQueryId_Equal(clickLog.getQueryId());
                        }).ifPresent(entity -> {
                            clickLogList.add(clickLog);
                            final String docId = clickLog.getDocId();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 26.3K bytes
    - Viewed (0)
Back to top