- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 21 for related_query (0.09 sec)
-
src/main/resources/fess_indices/fess_config.related_query/related_query.json
Shinsuke Sugaya <******@****.***> 1638450896 +0900
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 414 bytes - Viewed (0) -
src/main/resources/fess_indices/fess_config.related_query.json
Shinsuke Sugaya <******@****.***> 1638450896 +0900
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 173 bytes - Viewed (0) -
src/main/config/es/fess_config_related_query.json
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsbhv/BsRelatedQueryBhv.java
return createOptionalEntity(doSelectByPK(id, tp), id); } @Override protected Class<? extends RelatedQuery> typeOfSelectedEntity() { return RelatedQuery.class; } @Override protected Class<RelatedQuery> typeOfHandlingEntity() { return RelatedQuery.class; } @Override protected Class<RelatedQueryCB> typeOfHandlingConditionBean() {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.7K bytes - Viewed (0) -
dbflute_fess/dfprop/esfluteMap.dfprop
} ; fess_config.related_content = map:{ ; package = config ; esclientDiFile = esclient.xml ; esfluteDiFile = esflute_config.xml } ; fess_config.related_query = map:{ ; package = config ; esclientDiFile = esclient.xml ; esfluteDiFile = esflute_config.xml } ; fess_config.request_header = map:{
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 6.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsentity/BsRelatedQuery.java
@Override public RelatedQueryDbm asDBMeta() { return RelatedQueryDbm.getInstance(); } @Override public String asTableDbName() { return "related_query"; } // =================================================================================== // Source
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 6.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/cbean/bs/BsRelatedQueryCB.java
@Override public RelatedQueryDbm asDBMeta() { return RelatedQueryDbm.getInstance(); } @Override public String asTableDbName() { return "related_query"; } @Override public boolean hasSpecifiedColumn() { return _specification != null; } @Override public ConditionQuery localCQ() { return doGetConditionQuery();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/exentity/RelatedQuery.java
*/ package org.codelibs.fess.es.config.exentity; import java.util.Arrays; import org.codelibs.fess.es.config.bsentity.BsRelatedQuery; /** * @author ESFlute (using FreeGen) */ public class RelatedQuery extends BsRelatedQuery { private static final long serialVersionUID = 1L; public String getId() { return asDocMeta().id(); } public void setId(final String id) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RelatedQueryService.java
return relatedQueryList; } public OptionalEntity<RelatedQuery> getRelatedQuery(final String id) { return relatedQueryBhv.selectByPK(id); } public void store(final RelatedQuery relatedQuery) { relatedQueryBhv.insertOrUpdate(relatedQuery, op -> op.setRefreshPolicy(Constants.TRUE)); ComponentUtil.getRelatedQueryHelper().update(); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/relatedquery/ApiAdminRelatedqueryAction.java
}); return asJson(new ApiUpdateResponse().id(relatedQuery.getId()).created(true).status(Status.OK).result()); } // POST /api/admin/relatedquery/setting @Execute public JsonResponse<ApiResult> post$setting(final EditBody body) { validateApi(body, messages -> {}); body.crudMode = CrudMode.EDIT; final RelatedQuery relatedQuery = getRelatedQuery(body).map(entity -> { try {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 6.6K bytes - Viewed (0)