Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 12 for getDocId (0.04 seconds)

  1. src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java

                }
            };
    
            long result = testManager.purge(1L);
            assertTrue(result >= 0);
        }
    
        // Test FilePurgeVisitor getDocId
        @Test
        public void test_FilePurgeVisitor_getDocId() throws IOException {
            // Test the getDocId logic without creating actual FilePurgeVisitor
            // The logic converts path to doc ID by removing path separators
            String pathStr = "_1/_2/docid123";
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 20.4K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/opensearch/log/bsentity/BsFavoriteLog.java

            return createdAt;
        }
    
        public void setCreatedAt(LocalDateTime value) {
            registerModifiedProperty("createdAt");
            this.createdAt = value;
        }
    
        public String getDocId() {
            checkSpecifiedProperty("docId");
            return convertEmptyToNull(docId);
        }
    
        public void setDocId(String value) {
            registerModifiedProperty("docId");
            this.docId = value;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 5.7K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/opensearch/log/bsentity/BsClickLog.java

            return convertEmptyToNull(urlId);
        }
    
        public void setUrlId(String value) {
            registerModifiedProperty("urlId");
            this.urlId = value;
        }
    
        public String getDocId() {
            checkSpecifiedProperty("docId");
            return convertEmptyToNull(docId);
        }
    
        public void setDocId(String value) {
            registerModifiedProperty("docId");
            this.docId = value;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 7K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/opensearch/log/bsentity/dbmeta/ClickLogDbm.java

        {
            setupEpg(_epgMap, et -> ((ClickLog) et).getUrlId(), (et, vl) -> ((ClickLog) et).setUrlId(DfTypeUtil.toString(vl)), "urlId");
            setupEpg(_epgMap, et -> ((ClickLog) et).getDocId(), (et, vl) -> ((ClickLog) et).setDocId(DfTypeUtil.toString(vl)), "docId");
            setupEpg(_epgMap, et -> ((ClickLog) et).getOrder(), (et, vl) -> ((ClickLog) et).setOrder(DfTypeUtil.toInteger(vl)), "order");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 10.6K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/opensearch/log/bsentity/dbmeta/FavoriteLogDbm.java

        {
            setupEpg(_epgMap, et -> ((FavoriteLog) et).getCreatedAt(),
                    (et, vl) -> ((FavoriteLog) et).setCreatedAt(DfTypeUtil.toLocalDateTime(vl)), "createdAt");
            setupEpg(_epgMap, et -> ((FavoriteLog) et).getDocId(), (et, vl) -> ((FavoriteLog) et).setDocId(DfTypeUtil.toString(vl)), "docId");
            setupEpg(_epgMap, et -> ((FavoriteLog) et).getQueryId(), (et, vl) -> ((FavoriteLog) et).setQueryId(DfTypeUtil.toString(vl)),
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 9.2K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/entity/ChatMessage.java

                this.url = url;
            }
    
            /**
             * Gets the document ID.
             *
             * @return the document ID
             */
            public String getDocId() {
                return docId;
            }
    
            /**
             * Sets the document ID.
             *
             * @param docId the document ID
             */
            public void setDocId(final String docId) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 12 04:52:31 GMT 2026
    - 10.1K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

             */
            protected void deleteFiles() {
                final Map<String, Path> deleteFileMap = new HashMap<>();
                for (final Path path : deletedFileList) {
                    final String docId = getDocId(path);
                    if (StringUtil.isBlank(docId) || deleteFileMap.containsKey(docId)) {
                        deleteFile(path);
                    } else {
                        deleteFileMap.put(docId, path);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jan 01 12:47:47 GMT 2026
    - 27.2K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/entity/ChatMessageTest.java

            final ChatSource source = new ChatSource();
            assertEquals(0, source.getIndex());
            assertNull(source.getTitle());
            assertNull(source.getUrl());
            assertNull(source.getDocId());
            assertNull(source.getSnippet());
        }
    
        @Test
        public void test_chatSourceFromMap() {
            final Map<String, Object> doc = new HashMap<>();
            doc.put("title", "Test Title");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 9.2K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java

                        appendJson("query-id", entity.getQueryId(), buf).append(',');
                        appendJson("user-info-id", entity.getUserInfoId(), buf).append(',');
                        appendJson("doc-id", entity.getDocId(), buf).append(',');
                        appendJson("url", entity.getUrl(), buf);
                        buf.append('}');
                        buf.append('\n');
                        try {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Nov 24 02:07:40 GMT 2025
    - 32.1K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/app/service/SearchLogService.java

                    final Map<String, String> params = new LinkedHashMap<>();
                    params.put("ID", e.getId());
                    params.put("Query ID", e.getQueryId());
                    params.put("Doc ID", e.getDocId());
                    params.put("User Session ID", e.getUserSessionId());
                    params.put("URL", e.getUrl());
                    params.put("URL ID", e.getUrlId());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 32.7K bytes
    - Click Count (0)
Back to Top