All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.redfin.sitemapgenerator.ISitemapUrlRenderer Maven / Gradle / Ivy

The newest version!
package com.redfin.sitemapgenerator;

import java.io.IOException;
import java.io.OutputStreamWriter;

interface ISitemapUrlRenderer {
	
	public Class getUrlClass();
	public String getXmlNamespaces();
	public void render(T url, OutputStreamWriter out, W3CDateFormat dateFormat) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy