Uses of Class
com.norconex.collector.http.fetch.HttpMethod
-
Packages that use HttpMethod Package Description com.norconex.collector.http.fetch com.norconex.collector.http.fetch.impl com.norconex.collector.http.fetch.impl.webdriver com.norconex.collector.http.fetch.util -
-
Uses of HttpMethod in com.norconex.collector.http.fetch
Methods in com.norconex.collector.http.fetch that return HttpMethod Modifier and Type Method Description static HttpMethod
HttpMethod. valueOf(String name)
Returns the enum constant of this type with the specified name.static HttpMethod[]
HttpMethod. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.norconex.collector.http.fetch with parameters of type HttpMethod Modifier and Type Method Description protected abstract boolean
AbstractHttpFetcher. accept(HttpMethod httpMethod)
Whether the supplied HttpMethod is supported by this fetcher.boolean
AbstractHttpFetcher. accept(Doc doc, HttpMethod httpMethod)
boolean
IHttpFetcher. accept(Doc doc, HttpMethod httpMethod)
IHttpFetchResponse
HttpFetchClient. fetch(CrawlDoc doc, HttpMethod httpMethod)
IHttpFetchResponse
IHttpFetcher. fetch(CrawlDoc doc, HttpMethod httpMethod)
Performs an HTTP request for the supplied document reference and HTTP method.boolean
HttpMethod. is(HttpMethod httpMethod)
boolean
HttpMethod. isAny(HttpMethod... httpMethods)
-
Uses of HttpMethod in com.norconex.collector.http.fetch.impl
Methods in com.norconex.collector.http.fetch.impl that return types with arguments of type HttpMethod Modifier and Type Method Description List<HttpMethod>
GenericHttpFetcherConfig. getHttpMethods()
Gets the list of HTTP methods to be accepted by this fetcher.Methods in com.norconex.collector.http.fetch.impl with parameters of type HttpMethod Modifier and Type Method Description protected boolean
GenericHttpFetcher. accept(HttpMethod httpMethod)
protected boolean
PhantomJSDocumentFetcher. accept(HttpMethod httpMethod)
Deprecated.boolean
PhantomJSDocumentFetcher. accept(Doc doc, HttpMethod httpMethod)
Deprecated.IHttpFetchResponse
GenericHttpFetcher. fetch(CrawlDoc doc, HttpMethod httpMethod)
IHttpFetchResponse
PhantomJSDocumentFetcher. fetch(CrawlDoc doc, HttpMethod httpMethod)
Deprecated.Method parameters in com.norconex.collector.http.fetch.impl with type arguments of type HttpMethod Modifier and Type Method Description void
GenericHttpFetcherConfig. setHttpMethods(List<HttpMethod> httpMethods)
Sets the list of HTTP methods to be accepted by this fetcher. -
Uses of HttpMethod in com.norconex.collector.http.fetch.impl.webdriver
Methods in com.norconex.collector.http.fetch.impl.webdriver with parameters of type HttpMethod Modifier and Type Method Description protected boolean
WebDriverHttpFetcher. accept(HttpMethod httpMethod)
IHttpFetchResponse
WebDriverHttpFetcher. fetch(CrawlDoc doc, HttpMethod httpMethod)
-
Uses of HttpMethod in com.norconex.collector.http.fetch.util
Methods in com.norconex.collector.http.fetch.util with parameters of type HttpMethod Modifier and Type Method Description static org.apache.http.client.methods.HttpRequestBase
ApacheHttpUtil. createUriRequest(String url, HttpMethod method)
Creates an HTTP request.
-