01: /**
02: * Licensed to the Apache Software Foundation (ASF) under one
03: * or more contributor license agreements. See the NOTICE file
04: * distributed with this work for additional information
05: * regarding copyright ownership. The ASF licenses this file
06: * to you under the Apache License, Version 2.0 (the
07: * "License"); you may not use this file except in compliance
08: * with the License. You may obtain a copy of the License at
09: *
10: * http://www.apache.org/licenses/LICENSE-2.0
11: *
12: * Unless required by applicable law or agreed to in writing,
13: * software distributed under the License is distributed on an
14: * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15: * KIND, either express or implied. See the License for the
16: * specific language governing permissions and limitations
17: * under the License.
18: */package org.apache.cxf.transport.jms;
19:
20: public final class JMSConstants {
21:
22: public static final String JMS_QUEUE = "queue";
23: public static final String JMS_TOPIC = "topic";
24:
25: public static final String TEXT_MESSAGE_TYPE = "text";
26: public static final String BINARY_MESSAGE_TYPE = "binary";
27:
28: public static final String JMS_POOLEDSESSION = "jms.pooled.session";
29: public static final String JMS_SERVER_REQUEST_HEADERS = "org.apache.cxf.jms.server.request.headers";
30: public static final String JMS_SERVER_RESPONSE_HEADERS = "org.apache.cxf.jms.server.response.headers";
31: public static final String JMS_REQUEST_MESSAGE = "org.apache.cxf.jms.request.message";
32: public static final String JMS_RESPONSE_MESSAGE = "org.apache.cxf.jms.reponse.message";
33: public static final String JMS_CLIENT_REQUEST_HEADERS = "org.apache.cxf.jms.client.request.headers";
34: public static final String JMS_CLIENT_RESPONSE_HEADERS = "org.apache.cxf.jms.client.response.headers";
35:
36: public static final String JMS_CLIENT_RECEIVE_TIMEOUT = "org.apache.cxf.jms.client.timeout";
37:
38: public static final String JMS_SERVER_CONFIGURATION_URI = "http://cxf.apache.org/configuration/transport/jms-server";
39: public static final String JMS_CLIENT_CONFIGURATION_URI = "http://cxf.apache.org/configuration/transport/jms-client";
40: public static final String ENDPOINT_CONFIGURATION_URI = "http://cxf.apache.org/jaxws/endpoint-config";
41: public static final String SERVICE_CONFIGURATION_URI = "http://cxf.apache.org/jaxws/service-config";
42: public static final String PORT_CONFIGURATION_URI = "http://cxf.apache.org/jaxws/port-config";
43:
44: public static final String JMS_CLIENT_CONFIG_ID = "jms-client";
45: public static final String JMS_SERVER_CONFIG_ID = "jms-server";
46:
47: public static final String JMS_REBASED_REPLY_TO = "org.apache.cxf.jms.server.replyto";
48:
49: }
|