Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 57 for insertOrUpdate (0.08 sec)

  1. src/main/java/org/codelibs/fess/es/log/bsbhv/BsFavoriteLogBhv.java

            entity.asDocMeta().indexOption(opLambda);
            doUpdate(entity, null);
        }
    
        public void insertOrUpdate(FavoriteLog entity) {
            doInsertOrUpdate(entity, null, null);
        }
    
        public void insertOrUpdate(FavoriteLog entity, RequestOptionCall<IndexRequestBuilder> opLambda) {
            entity.asDocMeta().indexOption(opLambda);
            doInsertOrUpdate(entity, null, null);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/user/bsbhv/BsRoleBhv.java

            entity.asDocMeta().indexOption(opLambda);
            doUpdate(entity, null);
        }
    
        public void insertOrUpdate(Role entity) {
            doInsertOrUpdate(entity, null, null);
        }
    
        public void insertOrUpdate(Role entity, RequestOptionCall<IndexRequestBuilder> opLambda) {
            entity.asDocMeta().indexOption(opLambda);
            doInsertOrUpdate(entity, null, null);
        }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/bsbhv/BsBadWordBhv.java

            entity.asDocMeta().indexOption(opLambda);
            doUpdate(entity, null);
        }
    
        public void insertOrUpdate(BadWord entity) {
            doInsertOrUpdate(entity, null, null);
        }
    
        public void insertOrUpdate(BadWord entity, RequestOptionCall<IndexRequestBuilder> opLambda) {
            entity.asDocMeta().indexOption(opLambda);
            doInsertOrUpdate(entity, null, null);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/bsbhv/BsCrawlingInfoParamBhv.java

            entity.asDocMeta().indexOption(opLambda);
            doUpdate(entity, null);
        }
    
        public void insertOrUpdate(CrawlingInfoParam entity) {
            doInsertOrUpdate(entity, null, null);
        }
    
        public void insertOrUpdate(CrawlingInfoParam entity, RequestOptionCall<IndexRequestBuilder> opLambda) {
            entity.asDocMeta().indexOption(opLambda);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/bsbhv/BsPathMappingBhv.java

            entity.asDocMeta().indexOption(opLambda);
            doUpdate(entity, null);
        }
    
        public void insertOrUpdate(PathMapping entity) {
            doInsertOrUpdate(entity, null, null);
        }
    
        public void insertOrUpdate(PathMapping entity, RequestOptionCall<IndexRequestBuilder> opLambda) {
            entity.asDocMeta().indexOption(opLambda);
            doInsertOrUpdate(entity, null, null);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/bsbhv/BsWebAuthenticationBhv.java

            entity.asDocMeta().indexOption(opLambda);
            doUpdate(entity, null);
        }
    
        public void insertOrUpdate(WebAuthentication entity) {
            doInsertOrUpdate(entity, null, null);
        }
    
        public void insertOrUpdate(WebAuthentication entity, RequestOptionCall<IndexRequestBuilder> opLambda) {
            entity.asDocMeta().indexOption(opLambda);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/service/DuplicateHostService.java

        public OptionalEntity<DuplicateHost> getDuplicateHost(final String id) {
            return duplicateHostBhv.selectByPK(id);
        }
    
        public void store(final DuplicateHost duplicateHost) {
    
            duplicateHostBhv.insertOrUpdate(duplicateHost, op -> {
                op.setRefreshPolicy(Constants.TRUE);
            });
    
        }
    
        public void delete(final DuplicateHost duplicateHost) {
    
            duplicateHostBhv.delete(duplicateHost, op -> {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/service/RelatedQueryService.java

        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();
        }
    
        public void delete(final RelatedQuery relatedQuery) {
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/bsbhv/BsScheduledJobBhv.java

            entity.asDocMeta().indexOption(opLambda);
            doUpdate(entity, null);
        }
    
        public void insertOrUpdate(ScheduledJob entity) {
            doInsertOrUpdate(entity, null, null);
        }
    
        public void insertOrUpdate(ScheduledJob entity, RequestOptionCall<IndexRequestBuilder> opLambda) {
            entity.asDocMeta().indexOption(opLambda);
            doInsertOrUpdate(entity, null, null);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/log/bsbhv/BsSearchLogBhv.java

            entity.asDocMeta().indexOption(opLambda);
            doUpdate(entity, null);
        }
    
        public void insertOrUpdate(SearchLog entity) {
            doInsertOrUpdate(entity, null, null);
        }
    
        public void insertOrUpdate(SearchLog entity, RequestOptionCall<IndexRequestBuilder> opLambda) {
            entity.asDocMeta().indexOption(opLambda);
            doInsertOrUpdate(entity, null, null);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top