This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit 9025fe851b205252f47801c9aa1b2d513c8d88ba Author: Claus Ibsen <[email protected]> AuthorDate: Mon Feb 13 08:50:17 2023 +0100 CAMEL-19043: camel-core - Add Exchange.RECEIVED_TIMESTAMP as internal exchange property --- core/camel-api/src/main/java/org/apache/camel/ExchangePropertyKey.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/camel-api/src/main/java/org/apache/camel/ExchangePropertyKey.java b/core/camel-api/src/main/java/org/apache/camel/ExchangePropertyKey.java index bbad9689eb4..f254840d4f2 100644 --- a/core/camel-api/src/main/java/org/apache/camel/ExchangePropertyKey.java +++ b/core/camel-api/src/main/java/org/apache/camel/ExchangePropertyKey.java @@ -61,6 +61,7 @@ public enum ExchangePropertyKey { ON_COMPLETION(Exchange.ON_COMPLETION), ON_COMPLETION_ROUTE_IDS(Exchange.ON_COMPLETION_ROUTE_IDS), PARENT_UNIT_OF_WORK(Exchange.PARENT_UNIT_OF_WORK), + RECEIVED_TIMESTAMP(Exchange.RECEIVED_TIMESTAMP), RECIPIENT_LIST_ENDPOINT(Exchange.RECIPIENT_LIST_ENDPOINT), SLIP_ENDPOINT(Exchange.SLIP_ENDPOINT), SLIP_PRODUCER(Exchange.SLIP_PRODUCER), @@ -162,6 +163,8 @@ public enum ExchangePropertyKey { return ON_COMPLETION_ROUTE_IDS; case Exchange.PARENT_UNIT_OF_WORK: return PARENT_UNIT_OF_WORK; + case Exchange.RECEIVED_TIMESTAMP: + return RECEIVED_TIMESTAMP; case Exchange.RECIPIENT_LIST_ENDPOINT: return RECIPIENT_LIST_ENDPOINT; case Exchange.SLIP_ENDPOINT:
