Skip to content

Package: CamelConstants

CamelConstants

Coverage

1: /*******************************************************************************
2: * Copyright (c) 2016, 2020 Eurotech and/or its affiliates and others
3: *
4: * All rights reserved. This program and the accompanying materials
5: * are made available under the terms of the Eclipse Public License v1.0
6: * which accompanies this distribution, and is available at
7: * http://www.eclipse.org/legal/epl-v10.html
8: *
9: * Contributors:
10: * Eurotech - initial API and implementation
11: *******************************************************************************/
12: package org.eclipse.kapua.broker.core.listener;
13:
14: /**
15: * Camel Header constants
16: *
17: * @since 1.0
18: */
19: public class CamelConstants {
20:
21: private CamelConstants() { }
22:
23: public static final String JMS_EXCHANGE_FAILURE_ENDPOINT = "CamelFailureEndpoint";
24: public static final String JMS_EXCHANGE_FAILURE_EXCEPTION = "CamelExceptionCaught";
25: public static final String JMS_EXCHANGE_REDELIVERED = "JMSRedelivered";
26:
27: public static final String JMS_HEADER_TIMESTAMP = "JMSTimestamp";
28: public static final String JMS_HEADER_DESTINATION = "JMSDestination";
29:
30: public static final String JMS_CORRELATION_ID = "JMSCorrelationID";
31:
32: }