- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for setLastmod (0.05 sec)
-
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) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/SitemapsHelper.java
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 14.7K bytes - Viewed (0) -
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) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/SitemapsHelperTest.java
assertFalse(sitemapSet.isIndex()); assertEquals("2005-01-01", sitemaps[0].getLastmod()); assertEquals("http://www.example.com/", sitemaps[0].getLoc()); assertEquals("monthly", ((SitemapUrl) sitemaps[0]).getChangefreq()); assertEquals("0.8", ((SitemapUrl) sitemaps[0]).getPriority()); assertNull(sitemaps[1].getLastmod());
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 9.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/Sitemap.java
*/ String getLoc(); /** * Retrieves the last modification date of the sitemap. * * @return A string representing the last modification date. */ String getLastmod();
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 1.2K bytes - Viewed (0)