Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getThumbnailLoc (0.08 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapVideo.java

         */
        public SitemapVideo() {
            // Default constructor
        }
    
        /**
         * Gets the thumbnail location URL.
         * @return the thumbnail URL
         */
        public String getThumbnailLoc() {
            return thumbnailLoc;
        }
    
        /**
         * Sets the thumbnail location URL.
         * @param thumbnailLoc the thumbnail URL to set
         */
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:34:36 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/SitemapsHelperTest.java

            assertEquals(1, sitemapUrl.getVideos().size());
    
            final SitemapVideo video = sitemapUrl.getVideos().get(0);
            assertEquals("http://www.example.com/thumbs/123.jpg", video.getThumbnailLoc());
            assertEquals("Sample video title", video.getTitle());
            assertEquals("Sample video description", video.getDescription());
            assertEquals("http://www.example.com/video123.mp4", video.getContentLoc());
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 36.7K bytes
    - Viewed (0)
Back to top