NIFI-3515: This closes #2257. Added EventDriven annotation to PutFile

Signed-off-by: joewitt <joewitt@apache.org>
This commit is contained in:
m-hogue 2017-11-08 11:37:56 -05:00 committed by joewitt
parent e8b2387cb2
commit 73702004b9
1 changed files with 2 additions and 0 deletions

View File

@ -16,6 +16,7 @@
*/
package org.apache.nifi.processors.standard;
import org.apache.nifi.annotation.behavior.EventDriven;
import org.apache.nifi.annotation.behavior.InputRequirement;
import org.apache.nifi.annotation.behavior.InputRequirement.Requirement;
import org.apache.nifi.annotation.behavior.ReadsAttribute;
@ -55,6 +56,7 @@ import java.util.Set;
import java.util.concurrent.TimeUnit;
import java.util.regex.Pattern;
@EventDriven
@SupportsBatching
@InputRequirement(Requirement.INPUT_REQUIRED)
@Tags({"put", "local", "copy", "archive", "files", "filesystem", "restricted"})