Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for setMimeType (0.1 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java

            }
    
            @Override
            public void setCreateTime(Long createTime) {
                // Do nothing in test
            }
    
            @Override
            public void setMimeType(String mimeType) {
                // Do nothing in test
            }
    
            @Override
            public void setMethod(String method) {
                // Do nothing in test
            }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 33.6K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

            }
            return buf.toString();
        }
    
        /**
         * Sets the MIME type.
         * @param mimeType The MIME type.
         */
        public void setMimeType(final String mimeType) {
            this.mimeType = mimeType;
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 27 13:56:32 GMT 2026
    - 55.4K bytes
    - Click Count (1)
  3. src/test/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformerTest.java

            responseData.setUrl("http://example.com/document.pdf");
            assertEquals("http://example.com/document.pdf", responseData.getUrl());
    
            responseData.setMimeType("application/pdf");
            assertEquals("application/pdf", responseData.getMimeType());
    
            responseData.setCharSet("UTF-8");
            assertEquals("UTF-8", responseData.getCharSet());
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jan 15 12:54:47 GMT 2026
    - 8.1K bytes
    - Click Count (0)
Back to Top