Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

         * (non-Javadoc)
         *
         * @see org.codelibs.fess.crawler.entity.Sitemap#getLastmod()
         */
        @Override
        public String getLastmod() {
            return lastmod;
        }
    
        /**
         * Sets the last modification time of the sitemap.
         * @param lastmod the last modification time in W3C Datetime format
         */
        public void setLastmod(final String lastmod) {
            this.lastmod = lastmod;
        }
    
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 4.4K bytes
    - Viewed (1)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/SitemapsHelper.java

                        buf = null;
                    }
                } else if (LASTMOD_ELEMENT.equals(qName)) {
                    if (buf != null) {
                        sitemapUrl.setLastmod(buf.toString().trim());
                        buf = null;
                    }
                } else if (CHANGEFREQ_ELEMENT.equals(qName)) {
                    if (buf != null) {
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 14.7K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapUrl.java

         * @return the last modification date
         */
        @Override
        public String getLastmod() {
            return lastmod;
        }
    
        /**
         * Sets the last modification date of this sitemap entry.
         * @param lastmod the last modification date to set
         */
        public void setLastmod(final String lastmod) {
            this.lastmod = lastmod;
        }
    
        /**
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 6.5K bytes
    - Viewed (0)
Back to top