You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2020/03/17 15:43:10 UTC

[camel] 04/05: Camel-AWS2-Kinesis: Cleanup

This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 70d783605038b6c96e980bab98764bdddb1b32f5
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Mar 17 16:39:44 2020 +0100

    Camel-AWS2-Kinesis: Cleanup
---
 .../component/aws2/kinesis/ReachedClosedStatusException.java      | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/components/camel-aws2-kinesis/src/main/java/org/apache/camel/component/aws2/kinesis/ReachedClosedStatusException.java b/components/camel-aws2-kinesis/src/main/java/org/apache/camel/component/aws2/kinesis/ReachedClosedStatusException.java
index 8747263..9344446 100644
--- a/components/camel-aws2-kinesis/src/main/java/org/apache/camel/component/aws2/kinesis/ReachedClosedStatusException.java
+++ b/components/camel-aws2-kinesis/src/main/java/org/apache/camel/component/aws2/kinesis/ReachedClosedStatusException.java
@@ -27,4 +27,12 @@ public class ReachedClosedStatusException extends Exception {
         this.streamName = streamName;
         this.shardId = shardId;
     }
+
+	public String getStreamName() {
+		return streamName;
+	}
+
+	public String getShardId() {
+		return shardId;
+	}
 }