Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for seqNo (0.43 sec)

  1. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractEntity.java

            }
    
            public Long version() {
                return version;
            }
    
            public DocMeta seqNo(Long seqNo) {
                this.seqNo = seqNo;
                return this;
            }
    
            public Long seqNo() {
                return seqNo;
            }
    
            public DocMeta primaryTerm(Long primaryTerm) {
                this.primaryTerm = primaryTerm;
                return this;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractBehavior.java

            if (indexOption != null) {
                indexOption.callback(builder);
            }
            final Long seqNo = esEntity.asDocMeta().seqNo();
            if (seqNo != null && seqNo.longValue() != SequenceNumbers.UNASSIGNED_SEQ_NO) {
                esEntity.asDocMeta().seqNo(seqNo);
            }
            final Long primaryTerm = esEntity.asDocMeta().primaryTerm();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 26.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractBehavior.java

            if (indexOption != null) {
                indexOption.callback(builder);
            }
            final Long seqNo = esEntity.asDocMeta().seqNo();
            if (seqNo != null && seqNo.longValue() != SequenceNumbers.UNASSIGNED_SEQ_NO) {
                esEntity.asDocMeta().seqNo(seqNo);
            }
            final Long primaryTerm = esEntity.asDocMeta().primaryTerm();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 26.4K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/admin/searchlist/admin_searchlist_edit.jsp

                    <la:hidden property="crudMode"/>
                    <la:hidden property="q"/>
                    <c:if test="${crudMode==2}">
                        <la:hidden property="id"/>
                        <la:hidden property="seqNo"/>
                        <la:hidden property="primaryTerm"/>
                    </c:if>
                    <div class="row">
                        <div class="col-md-12">
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 13 07:47:04 GMT 2020
    - 24.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractEntity.java

            }
    
            public Long version() {
                return version;
            }
    
            public DocMeta seqNo(Long seqNo) {
                this.seqNo = seqNo;
                return this;
            }
    
            public Long seqNo() {
                return seqNo;
            }
    
            public DocMeta primaryTerm(Long primaryTerm) {
                this.primaryTerm = primaryTerm;
                return this;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractEntity.java

            }
    
            public Long version() {
                return version;
            }
    
            public DocMeta seqNo(Long seqNo) {
                this.seqNo = seqNo;
                return this;
            }
    
            public Long seqNo() {
                return seqNo;
            }
    
            public DocMeta primaryTerm(Long primaryTerm) {
                this.primaryTerm = primaryTerm;
                return this;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java

                        final Long seqNo = (Long) entity.remove(fessConfig.getIndexFieldSeqNo());
                        final Long primaryTerm = (Long) entity.remove(fessConfig.getIndexFieldPrimaryTerm());
                        if (seqNo != null && primaryTerm != null && oldId != null) {
                            searchEngineClient.delete(index, oldId, seqNo, primaryTerm);
                        }
                    }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 18.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractBehavior.java

            if (indexOption != null) {
                indexOption.callback(builder);
            }
            final Long seqNo = esEntity.asDocMeta().seqNo();
            if (seqNo != null && seqNo.longValue() != SequenceNumbers.UNASSIGNED_SEQ_NO) {
                esEntity.asDocMeta().seqNo(seqNo);
            }
            final Long primaryTerm = esEntity.asDocMeta().primaryTerm();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 26.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/searchlist/EditForm.java

    import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
    
    /**
     * @author shinsuke
     */
    public class EditForm extends CreateForm {
    
        public String id;
    
        @ValidateTypeFailure
        public Long seqNo;
    
        @ValidateTypeFailure
        public Long primaryTerm;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 950 bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

        }
    
        public boolean delete(final String index, final String id, final Number seqNo, final Number primaryTerm) {
            try {
                final DeleteRequestBuilder builder = client.prepareDelete().setIndex(index).setId(id).setRefreshPolicy(RefreshPolicy.IMMEDIATE);
                if (seqNo != null) {
                    builder.setIfSeqNo(seqNo.longValue());
                }
                if (primaryTerm != null) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 84.1K bytes
    - Viewed (0)
Back to top