Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id EC416200C10 for ; Thu, 19 Jan 2017 15:33:00 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id EADF8160B42; Thu, 19 Jan 2017 14:33:00 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 43519160B54 for ; Thu, 19 Jan 2017 15:33:00 +0100 (CET) Received: (qmail 27664 invoked by uid 500); 19 Jan 2017 14:32:59 -0000 Mailing-List: contact commits-help@camel.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@camel.apache.org Delivered-To: mailing list commits@camel.apache.org Received: (qmail 27565 invoked by uid 99); 19 Jan 2017 14:32:59 -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; Thu, 19 Jan 2017 14:32:59 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 333CFDFA22; Thu, 19 Jan 2017 14:32:59 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: acosentino@apache.org To: commits@camel.apache.org Date: Thu, 19 Jan 2017 14:32:59 -0000 Message-Id: <72ec7b5a11d7403a84c70c8bbc79cae6@git.apache.org> In-Reply-To: <8c5099e6d77e4d3f8db2a5e33e7eb963@git.apache.org> References: <8c5099e6d77e4d3f8db2a5e33e7eb963@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [2/2] camel git commit: Camel AWS EC2 added a bit of labels on EC2Configuration fields archived-at: Thu, 19 Jan 2017 14:33:01 -0000 Camel AWS EC2 added a bit of labels on EC2Configuration fields Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/4b61caca Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/4b61caca Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/4b61caca Branch: refs/heads/master Commit: 4b61cacaf95bdb08cd4e089bd7ec70bf623a25cb Parents: d58043f Author: Andrea Cosentino Authored: Thu Jan 19 15:26:55 2017 +0100 Committer: Andrea Cosentino Committed: Thu Jan 19 15:26:55 2017 +0100 ---------------------------------------------------------------------- .../camel/component/aws/ec2/EC2Configuration.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/4b61caca/components/camel-aws/src/main/java/org/apache/camel/component/aws/ec2/EC2Configuration.java ---------------------------------------------------------------------- diff --git a/components/camel-aws/src/main/java/org/apache/camel/component/aws/ec2/EC2Configuration.java b/components/camel-aws/src/main/java/org/apache/camel/component/aws/ec2/EC2Configuration.java index 09dc386..00733bc 100644 --- a/components/camel-aws/src/main/java/org/apache/camel/component/aws/ec2/EC2Configuration.java +++ b/components/camel-aws/src/main/java/org/apache/camel/component/aws/ec2/EC2Configuration.java @@ -28,21 +28,21 @@ public class EC2Configuration { @UriPath(description = "Logical name") @Metadata(required = "true") private String label; - @UriParam + @UriParam(label = "producer") private AmazonEC2Client amazonEc2Client; - @UriParam + @UriParam(label = "producer", secret = true) private String accessKey; - @UriParam + @UriParam(label = "producer", secret = true) private String secretKey; - @UriParam + @UriParam(label = "producer") private String amazonEc2Endpoint; @UriParam(label = "producer", enums = "createAndRunInstances, startInstances, stopInstances, terminateInstances, describeInstances, " + "describeInstancesStatus, rebootInstances, monitorInstances, unmonitorInstances, createTags, deleteTags") @Metadata(required = "true") private EC2Operations operation; - @UriParam + @UriParam(label = "producer") private String proxyHost; - @UriParam + @UriParam(label = "producer") private Integer proxyPort; public AmazonEC2Client getAmazonEc2Client() {