Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 57 for insertOrUpdate (0.17 sec)

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

                ComponentUtil.getLdapManager().apply(g);
                return g;
            });
        }
    
        public void store(final Group group) {
            ComponentUtil.getLdapManager().insert(group);
    
            groupBhv.insertOrUpdate(group, op -> {
                op.setRefreshPolicy(Constants.TRUE);
            });
    
        }
    
        public void delete(final Group group) {
            ComponentUtil.getLdapManager().delete(group);
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/RoleService.java

            return roleBhv.selectByPK(id);
        }
    
        public void store(final Role role) {
            ComponentUtil.getLdapManager().insert(role);
    
            roleBhv.insertOrUpdate(role, op -> {
                op.setRefreshPolicy(Constants.TRUE);
            });
    
        }
    
        public void delete(final Role role) {
            ComponentUtil.getLdapManager().delete(role);
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/service/FailureUrlService.java

        }
    
        public OptionalEntity<FailureUrl> getFailureUrl(final String id) {
            return failureUrlBhv.selectByPK(id);
        }
    
        public void store(final FailureUrl failureUrl) {
    
            failureUrlBhv.insertOrUpdate(failureUrl, op -> {
                op.setRefreshPolicy(Constants.TRUE);
            });
    
        }
    
        public void delete(final FailureUrl failureUrl) {
    
            failureUrlBhv.delete(failureUrl, op -> {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Jun 24 01:20:42 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/bsbhv/BsCrawlingInfoBhv.java

            entity.asDocMeta().indexOption(opLambda);
            doUpdate(entity, null);
        }
    
        public void insertOrUpdate(CrawlingInfo entity) {
            doInsertOrUpdate(entity, null, null);
        }
    
        public void insertOrUpdate(CrawlingInfo 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)
  5. src/main/java/org/codelibs/fess/es/config/bsbhv/BsElevateWordToLabelBhv.java

            entity.asDocMeta().indexOption(opLambda);
            doUpdate(entity, null);
        }
    
        public void insertOrUpdate(ElevateWordToLabel entity) {
            doInsertOrUpdate(entity, null, null);
        }
    
        public void insertOrUpdate(ElevateWordToLabel 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.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/bsbhv/BsJobLogBhv.java

            entity.asDocMeta().indexOption(opLambda);
            doUpdate(entity, null);
        }
    
        public void insertOrUpdate(JobLog entity) {
            doInsertOrUpdate(entity, null, null);
        }
    
        public void insertOrUpdate(JobLog 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)
  7. src/main/java/org/codelibs/fess/es/config/bsbhv/BsRoleTypeBhv.java

            entity.asDocMeta().indexOption(opLambda);
            doUpdate(entity, null);
        }
    
        public void insertOrUpdate(RoleType entity) {
            doInsertOrUpdate(entity, null, null);
        }
    
        public void insertOrUpdate(RoleType 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)
  8. src/main/java/org/codelibs/fess/es/config/bsbhv/BsThumbnailQueueBhv.java

            entity.asDocMeta().indexOption(opLambda);
            doUpdate(entity, null);
        }
    
        public void insertOrUpdate(ThumbnailQueue entity) {
            doInsertOrUpdate(entity, null, null);
        }
    
        public void insertOrUpdate(ThumbnailQueue 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)
  9. src/main/java/org/codelibs/fess/es/config/bsbhv/BsFileAuthenticationBhv.java

            entity.asDocMeta().indexOption(opLambda);
            doUpdate(entity, null);
        }
    
        public void insertOrUpdate(FileAuthentication entity) {
            doInsertOrUpdate(entity, null, null);
        }
    
        public void insertOrUpdate(FileAuthentication 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)
  10. src/main/java/org/codelibs/fess/es/config/bsbhv/BsFileConfigBhv.java

            entity.asDocMeta().indexOption(opLambda);
            doUpdate(entity, null);
        }
    
        public void insertOrUpdate(FileConfig entity) {
            doInsertOrUpdate(entity, null, null);
        }
    
        public void insertOrUpdate(FileConfig 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.8K bytes
    - Viewed (0)
Back to top