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

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

There is a newer version: 1.1.2
Show newest version
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));
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy