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 BCA3D200CA8 for ; Wed, 31 May 2017 09:54:32 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id B9EF0160BBA; Wed, 31 May 2017 07:54:32 +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 0EFB0160BCB for ; Wed, 31 May 2017 09:54:31 +0200 (CEST) Received: (qmail 4936 invoked by uid 500); 31 May 2017 07:54:31 -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 4857 invoked by uid 99); 31 May 2017 07:54:31 -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; Wed, 31 May 2017 07:54:31 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 04617DFE5C; Wed, 31 May 2017 07:54:31 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: gzurowski@apache.org To: commits@camel.apache.org Date: Wed, 31 May 2017 07:54:31 -0000 Message-Id: <4418cac35eac4258a80ac025fe0d3e76@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [1/3] camel git commit: CAMEL-11335: Add route state details archived-at: Wed, 31 May 2017 07:54:32 -0000 Repository: camel Updated Branches: refs/heads/master 4d62cc71d -> a229f53d0 CAMEL-11335: Add route state details Signed-off-by: Gregor Zurowski Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/394c00e5 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/394c00e5 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/394c00e5 Branch: refs/heads/master Commit: 394c00e56f724a83ca714a0f5ef1396327a39475 Parents: 4d62cc7 Author: Gregor Zurowski Authored: Wed May 31 07:10:06 2017 +0200 Committer: Gregor Zurowski Committed: Wed May 31 07:10:06 2017 +0200 ---------------------------------------------------------------------- .../actuate/endpoint/CamelRoutesEndpoint.java | 47 ++++++++++++++++++++ 1 file changed, 47 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/394c00e5/components/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/actuate/endpoint/CamelRoutesEndpoint.java ---------------------------------------------------------------------- diff --git a/components/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/actuate/endpoint/CamelRoutesEndpoint.java b/components/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/actuate/endpoint/CamelRoutesEndpoint.java index 3f44320..3cce647 100644 --- a/components/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/actuate/endpoint/CamelRoutesEndpoint.java +++ b/components/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/actuate/endpoint/CamelRoutesEndpoint.java @@ -24,6 +24,7 @@ import com.fasterxml.jackson.annotation.JsonPropertyOrder; import org.apache.camel.CamelContext; import org.apache.camel.Route; +import org.apache.camel.StatefulService; import org.apache.camel.spring.boot.actuate.endpoint.CamelRoutesEndpoint.RouteEndpointInfo; import org.springframework.boot.actuate.endpoint.AbstractEndpoint; import org.springframework.boot.actuate.endpoint.Endpoint; @@ -66,11 +67,33 @@ public class CamelRoutesEndpoint extends AbstractEndpoint