Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SitemapVideo (0.04 sec)

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

         */
        private String platform;
    
        /**
         * Indicates whether the video is a live stream.
         */
        private String live;
    
        /**
         * Creates a new SitemapVideo instance.
         */
        public SitemapVideo() {
            // Default constructor
        }
    
        /**
         * Gets the thumbnail location URL.
         * @return the thumbnail URL
         */
        public String getThumbnailLoc() {
    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/main/java/org/codelibs/fess/crawler/entity/SitemapUrl.java

         */
        public List<SitemapVideo> getVideos() {
            if (videos == null) {
                videos = new ArrayList<>();
            }
            return videos;
        }
    
        /**
         * Adds a video to this sitemap URL.
         * @param video the video to add
         */
        public void addVideo(final SitemapVideo video) {
            getVideos().add(video);
        }
    
        /**
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:34:36 UTC 2025
    - 9.1K bytes
    - Viewed (0)
Back to top