Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for setId (0.18 sec)

  1. src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractBehavior.java

            final IndexRequestBuilder builder = client.prepareIndex().setIndex(asEsIndex()).setSource(toSource(esEntity));
            final String id = esEntity.asDocMeta().id();
            if (id != null) {
                builder.setId(id);
            }
            final RequestOptionCall<IndexRequestBuilder> indexOption = esEntity.asDocMeta().indexOption();
            if (indexOption != null) {
                indexOption.callback(builder);
            }
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 26.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractBehavior.java

            final IndexRequestBuilder builder = client.prepareIndex().setIndex(asEsIndex()).setSource(toSource(esEntity));
            final String id = esEntity.asDocMeta().id();
            if (id != null) {
                builder.setId(id);
            }
            final RequestOptionCall<IndexRequestBuilder> indexOption = esEntity.asDocMeta().indexOption();
            if (indexOption != null) {
                indexOption.callback(builder);
            }
    Java
    - Registered: Mon Apr 22 08:04:10 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/user/allcommon/EsAbstractBehavior.java

            final IndexRequestBuilder builder = client.prepareIndex().setIndex(asEsIndex()).setSource(toSource(esEntity));
            final String id = esEntity.asDocMeta().id();
            if (id != null) {
                builder.setId(id);
            }
            final RequestOptionCall<IndexRequestBuilder> indexOption = esEntity.asDocMeta().indexOption();
            if (indexOption != null) {
                indexOption.callback(builder);
            }
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 26.4K bytes
    - Viewed (0)
Back to top