Updated documentation of ListenHTTP

This commit is contained in:
Pierre Villard 2016-12-29 15:46:18 +01:00 committed by Mike Moser
parent 376af83a3d
commit adfaffc773
1 changed files with 3 additions and 1 deletions

View File

@ -65,7 +65,9 @@ import java.util.regex.Pattern;
@InputRequirement(Requirement.INPUT_FORBIDDEN)
@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 {
private Set<Relationship> relationships;