Uses of Interface
com.norconex.collector.http.url.IURLNormalizer
-
Packages that use IURLNormalizer Package Description com.norconex.collector.http.crawler com.norconex.collector.http.url com.norconex.collector.http.url.impl -
-
Uses of IURLNormalizer in com.norconex.collector.http.crawler
Methods in com.norconex.collector.http.crawler that return IURLNormalizer Modifier and Type Method Description IURLNormalizer
HttpCrawlerConfig. getUrlNormalizer()
Deprecated, for removal: This API element is subject to removal in a future version.Since 3.1.0, useHttpCrawlerConfig.getUrlNormalizers()
instead.Methods in com.norconex.collector.http.crawler that return types with arguments of type IURLNormalizer Modifier and Type Method Description List<IURLNormalizer>
HttpCrawlerConfig. getUrlNormalizers()
Gets URL normalizers.Methods in com.norconex.collector.http.crawler with parameters of type IURLNormalizer Modifier and Type Method Description void
HttpCrawlerConfig. setUrlNormalizer(IURLNormalizer urlNormalizer)
Deprecated, for removal: This API element is subject to removal in a future version.Since 3.1.0, useHttpCrawlerConfig.setUrlNormalizers(List)
instead.Method parameters in com.norconex.collector.http.crawler with type arguments of type IURLNormalizer Modifier and Type Method Description void
HttpCrawlerConfig. setUrlNormalizers(List<IURLNormalizer> urlNormalizers)
Sets URL normalizers. -
Uses of IURLNormalizer in com.norconex.collector.http.url
Method parameters in com.norconex.collector.http.url with type arguments of type IURLNormalizer Modifier and Type Method Description static String
IURLNormalizer. normalizeURL(String url, List<IURLNormalizer> normalizers)
Normalizes a URL by applying each normalizers in the list. -
Uses of IURLNormalizer in com.norconex.collector.http.url.impl
Classes in com.norconex.collector.http.url.impl that implement IURLNormalizer Modifier and Type Class Description class
GenericURLNormalizer
Generic implementation ofIURLNormalizer
that should satisfy most URL normalization needs.
-