mirror of https://github.com/apache/nifi.git
Updated documentation of ListenHTTP
This commit is contained in:
parent
376af83a3d
commit
adfaffc773
|
@ -65,7 +65,9 @@ import java.util.regex.Pattern;
|
||||||
|
|
||||||
@InputRequirement(Requirement.INPUT_FORBIDDEN)
|
@InputRequirement(Requirement.INPUT_FORBIDDEN)
|
||||||
@Tags({"ingest", "http", "https", "rest", "listen"})
|
@Tags({"ingest", "http", "https", "rest", "listen"})
|
||||||
@CapabilityDescription("Starts an HTTP Server that is used to receive FlowFiles from remote sources. The default URI of the Service will be http://{hostname}:{port}/contentListener")
|
@CapabilityDescription("Starts an HTTP Server and listens on a given base path to transform incoming requests into FlowFiles. "
|
||||||
|
+ "The default URI of the Service will be http://{hostname}:{port}/contentListener. Only HEAD and POST requests are "
|
||||||
|
+ "supported. GET, PUT, and DELETE will result in an error and the HTTP response status code 405.")
|
||||||
public class ListenHTTP extends AbstractSessionFactoryProcessor {
|
public class ListenHTTP extends AbstractSessionFactoryProcessor {
|
||||||
|
|
||||||
private Set<Relationship> relationships;
|
private Set<Relationship> relationships;
|
||||||
|
|
Loading…
Reference in New Issue