com.redfin.sitemapgenerator.SitemapGeneratorOptions 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;
import java.io.File;
import java.net.MalformedURLException;
import java.net.URL;
class SitemapGeneratorOptions extends
AbstractSitemapGeneratorOptions {
public SitemapGeneratorOptions(URL baseUrl, File baseDir) {
super(baseUrl, baseDir);
}
public SitemapGeneratorOptions(String baseUrl, File baseDir) throws MalformedURLException {
this(new URL(baseUrl), baseDir);
}
public SitemapGeneratorOptions(URL baseUrl) {
super(baseUrl);
}
public SitemapGeneratorOptions(String baseUrl) throws MalformedURLException {
super(new URL(baseUrl));
}
}