Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for setPublicationDate (0.07 sec)

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

            return publicationDate;
        }
    
        /**
         * Sets the publication date.
         * @param publicationDate the publication date to set
         */
        public void setPublicationDate(final String publicationDate) {
            this.publicationDate = publicationDate;
        }
    
        /**
         * Gets the category of the video.
         * @return the category
         */
    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/SitemapNews.java

            return publicationDate;
        }
    
        /**
         * Sets the publication date.
         * @param publicationDate the publication date to set
         */
        public void setPublicationDate(final String publicationDate) {
            this.publicationDate = publicationDate;
        }
    
        /**
         * Gets the title of the news article.
         * @return the title
         */
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:34:36 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/SitemapsHelper.java

                        buf = null;
                    }
                } else if (VIDEO_PUBLICATION_DATE_ELEMENT.equals(elementName)) {
                    if (buf != null && currentVideo != null) {
                        currentVideo.setPublicationDate(buf.toString().trim());
                        buf = null;
                    }
                } else if (VIDEO_CATEGORY_ELEMENT.equals(elementName)) {
                    if (buf != null && currentVideo != null) {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Fri Nov 14 13:19:40 UTC 2025
    - 34.9K bytes
    - Viewed (0)
Back to top