com.redfin.sitemapgenerator.ISitemapUrlRenderer 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.
package com.redfin.sitemapgenerator;
interface ISitemapUrlRenderer {
public Class getUrlClass();
public String getXmlNamespaces();
public void render(T url, StringBuilder sb, W3CDateFormat dateFormat);
}