01: /*
02: * Licensed to the Apache Software Foundation (ASF) under one or more
03: * contributor license agreements. See the NOTICE file distributed with
04: * this work for additional information regarding copyright ownership.
05: * The ASF licenses this file to You under the Apache License, Version 2.0
06: * (the "License"); you may not use this file except in compliance with
07: * the License. You may obtain a copy of the License at
08: *
09: * http://www.apache.org/licenses/LICENSE-2.0
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
16: */
17: package org.apache.servicemix;
18:
19: public interface JbiConstants {
20:
21: String SEND_SYNC = "javax.jbi.messaging.sendSync";
22:
23: String PROTOCOL_TYPE = "javax.jbi.messaging.protocol.type";
24:
25: String PROTOCOL_HEADERS = "javax.jbi.messaging.protocol.headers";
26:
27: String SECURITY_SUBJECT = "javax.jbi.security.subject";
28:
29: String SOAP_HEADERS = "org.apache.servicemix.soap.headers";
30:
31: String PERSISTENT_PROPERTY_NAME = "org.apache.servicemix.persistent";
32:
33: String DATESTAMP_PROPERTY_NAME = "org.apache.servicemix.datestamp";
34:
35: String FLOW_PROPERTY_NAME = "org.apache.servicemix.flow";
36:
37: String STATELESS_CONSUMER = "org.apache.servicemix.consumer.stateless";
38:
39: String STATELESS_PROVIDER = "org.apache.servicemix.provider.stateless";
40:
41: String SENDER_ENDPOINT = "org.apache.servicemix.senderEndpoint";
42:
43: String HTTP_DESTINATION_URI = "org.apache.servicemix.http.destination.uri";
44:
45: /**
46: * This property should be set when a consumer endpoint creates an exchange
47: * related to another provider exchange. The value of the property should be
48: * set to the value of this property in the provider exchange, or to the id
49: * of the provider exchange if the property does not exist.
50: */
51: String CORRELATION_ID = "org.apache.servicemix.correlationId";
52:
53: }
|