com.redfin.sitemapgenerator.UrlUtils 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.net.URL;
import java.util.HashMap;
class UrlUtils {
static void checkUrl(URL url, URL baseUrl) {
// Is there a better test to use here?
if (baseUrl.getHost() == null) {
throw new RuntimeException("base URL is null");
}
if (!baseUrl.getHost().equalsIgnoreCase(url.getHost())) {
throw new RuntimeException("Domain of URL " + url + " doesn't match base URL " + baseUrl);
}
}
static HashMap newHashMap() {
return new HashMap();
}
}