Return-Path: X-Original-To: apmail-nifi-commits-archive@minotaur.apache.org Delivered-To: apmail-nifi-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 254DD18B77 for ; Tue, 13 Oct 2015 00:50:52 +0000 (UTC) Received: (qmail 32520 invoked by uid 500); 13 Oct 2015 00:50:52 -0000 Delivered-To: apmail-nifi-commits-archive@nifi.apache.org Received: (qmail 32479 invoked by uid 500); 13 Oct 2015 00:50:52 -0000 Mailing-List: contact commits-help@nifi.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@nifi.apache.org Delivered-To: mailing list commits@nifi.apache.org Received: (qmail 32453 invoked by uid 99); 13 Oct 2015 00:50:52 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 13 Oct 2015 00:50:52 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 78964E0984; Tue, 13 Oct 2015 00:50:51 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: danbress@apache.org To: commits@nifi.apache.org Date: Tue, 13 Oct 2015 00:50:54 -0000 Message-Id: <42f89efbd78940f0aff46c5aa7f00568@git.apache.org> In-Reply-To: <97534ada9d6e43c6b00da1b2ac9426b0@git.apache.org> References: <97534ada9d6e43c6b00da1b2ac9426b0@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [04/11] nifi git commit: Add @Override annotations Add @Override annotations Project: http://git-wip-us.apache.org/repos/asf/nifi/repo Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/213f507f Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/213f507f Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/213f507f Branch: refs/heads/master Commit: 213f507f53b3afa3eef3398ebdd3006fa1cbe292 Parents: 6cbc6db Author: Yu ISHIKAWA Authored: Wed Sep 2 13:02:39 2015 +0900 Committer: Yu ISHIKAWA Committed: Wed Sep 2 13:02:39 2015 +0900 ---------------------------------------------------------------------- .../java/org/apache/nifi/processors/aws/s3/DeleteS3Object.java | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/nifi/blob/213f507f/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/src/main/java/org/apache/nifi/processors/aws/s3/DeleteS3Object.java ---------------------------------------------------------------------- diff --git a/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/src/main/java/org/apache/nifi/processors/aws/s3/DeleteS3Object.java b/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/src/main/java/org/apache/nifi/processors/aws/s3/DeleteS3Object.java index 85fc70e..2cc00db 100644 --- a/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/src/main/java/org/apache/nifi/processors/aws/s3/DeleteS3Object.java +++ b/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/src/main/java/org/apache/nifi/processors/aws/s3/DeleteS3Object.java @@ -56,10 +56,12 @@ public class DeleteS3Object extends AbstractS3Processor { Arrays.asList(KEY, BUCKET, ACCESS_KEY, SECRET_KEY, CREDENTAILS_FILE, REGION, TIMEOUT, VERSION_ID, FULL_CONTROL_USER_LIST, READ_USER_LIST, WRITE_USER_LIST, READ_ACL_LIST, WRITE_ACL_LIST, OWNER)); + @Override protected List getSupportedPropertyDescriptors() { return properties; } + @Override public void onTrigger(final ProcessContext context, final ProcessSession session) { FlowFile flowFile = session.get(); if (flowFile == null) {