1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
|
17 |
|
|
18 |
|
package org.apache.camel.component.cxf.transport; |
19 |
|
|
20 |
|
|
21 |
|
|
22 |
|
|
23 |
0 |
public class CamelConstants { |
24 |
|
public static final String TEXT_MESSAGE_TYPE = "text"; |
25 |
|
public static final String BINARY_MESSAGE_TYPE = "binary"; |
26 |
|
public static final String CAMEL_SERVER_REQUEST_HEADERS = "org.apache.cxf.camel.server.request.headers"; |
27 |
|
public static final String CAMEL_SERVER_RESPONSE_HEADERS = "org.apache.cxf.camel.server.response.headers"; |
28 |
|
public static final String CAMEL_REQUEST_MESSAGE = "org.apache.cxf.camel.request.message"; |
29 |
|
public static final String CAMEL_RESPONSE_MESSAGE = "org.apache.cxf.camel.reponse.message"; |
30 |
|
public static final String CAMEL_CLIENT_REQUEST_HEADERS = "org.apache.cxf.camel.template.request.headers"; |
31 |
|
public static final String CAMEL_CLIENT_RESPONSE_HEADERS = |
32 |
|
"org.apache.cxf.camel.template.response.headers"; |
33 |
|
public static final String CAMEL_CLIENT_RECEIVE_TIMEOUT = "org.apache.cxf.camel.template.timeout"; |
34 |
|
public static final String CAMEL_SERVER_CONFIGURATION_URI = |
35 |
|
"http://cxf.apache.org/configuration/transport/camel-server"; |
36 |
|
public static final String CAMEL_CLIENT_CONFIGURATION_URI = |
37 |
|
"http://cxf.apache.org/configuration/transport/camel-template"; |
38 |
|
public static final String ENDPOINT_CONFIGURATION_URI = |
39 |
|
"http://cxf.apache.org/jaxws/endpoint-config"; |
40 |
|
public static final String SERVICE_CONFIGURATION_URI = |
41 |
|
"http://cxf.apache.org/jaxws/service-config"; |
42 |
|
public static final String PORT_CONFIGURATION_URI = |
43 |
|
"http://cxf.apache.org/jaxws/port-config"; |
44 |
|
public static final String CAMEL_CLIENT_CONFIG_ID = "camel-template"; |
45 |
|
public static final String CAMEL_SERVER_CONFIG_ID = "camel-server"; |
46 |
|
public static final String CAMEL_REBASED_REPLY_TO = "org.apache.cxf.camel.server.replyto"; |
47 |
|
public static final String CAMEL_CORRELATION_ID = "org.apache.cxf.camel.correlationId"; |
48 |
|
} |