com.redfin.sitemapgenerator.ISitemapUrl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sitemapgen4j Show documentation
Show all versions of sitemapgen4j Show documentation
SitemapGen4j is an XML sitemap generator written in Java.
The newest version!
package com.redfin.sitemapgenerator;
import java.net.URL;
import java.util.Date;
interface ISitemapUrl {
public abstract Date getLastMod();
public abstract URL getUrl();
}