Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ThumbnailGenerator (0.12 sec)

  1. src/main/java/org/codelibs/fess/exec/ThumbnailGenerator.java

     */
    public class ThumbnailGenerator {
    
        private static final Logger logger = LogManager.getLogger(ThumbnailGenerator.class);
    
        /**
         * OpenSearch client for accessing indexed documents.
         */
        @Resource
        public SearchEngineClient searchEngineClient;
    
        /**
         * Default constructor for ThumbnailGenerator.
         */
        public ThumbnailGenerator() {
            // Default constructor
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/thumbnail/ThumbnailGenerator.java

    import java.util.Map;
    
    import org.codelibs.core.misc.Tuple3;
    
    /**
     * Interface for thumbnail generation implementations.
     * Provides methods for creating thumbnails from various document types.
     */
    public interface ThumbnailGenerator {
    
        /**
         * Gets the name of this thumbnail generator.
         * @return The generator name.
         */
        String getName();
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.2K bytes
    - Viewed (0)
Back to top