001    /**
002     * Licensed to the Apache Software Foundation (ASF) under one or more
003     * contributor license agreements.  See the NOTICE file distributed with
004     * this work for additional information regarding copyright ownership.
005     * The ASF licenses this file to You under the Apache License, Version 2.0
006     * (the "License"); you may not use this file except in compliance with
007     * the License.  You may obtain a copy of the License at
008     *
009     *      http://www.apache.org/licenses/LICENSE-2.0
010     *
011     * Unless required by applicable law or agreed to in writing, software
012     * distributed under the License is distributed on an "AS IS" BASIS,
013     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014     * See the License for the specific language governing permissions and
015     * limitations under the License.
016     */
017    package org.apache.camel.component.cxf.transport;
018    
019    /**
020     * @version 
021     */
022    public final class CamelTransportConstants {
023    
024        public static final String TEXT_MESSAGE_TYPE = "text";
025        public static final String BINARY_MESSAGE_TYPE = "binary";
026        public static final String CAMEL_TARGET_ENDPOINT_URI = "org.apache.cxf.camel.target.endpoint.uri";
027        public static final String CAMEL_SERVER_REQUEST_HEADERS = "org.apache.cxf.camel.server.request.headers";
028        public static final String CAMEL_SERVER_RESPONSE_HEADERS = "org.apache.cxf.camel.server.response.headers";
029        public static final String CAMEL_REQUEST_MESSAGE = "org.apache.cxf.camel.request.message";
030        public static final String CAMEL_RESPONSE_MESSAGE = "org.apache.cxf.camel.reponse.message";
031        public static final String CAMEL_CLIENT_REQUEST_HEADERS = "org.apache.cxf.camel.template.request.headers";
032        public static final String CAMEL_CLIENT_RESPONSE_HEADERS =
033                "org.apache.cxf.camel.template.response.headers";
034        public static final String CAMEL_CLIENT_RECEIVE_TIMEOUT = "org.apache.cxf.camel.template.timeout";
035        public static final String CAMEL_SERVER_CONFIGURATION_URI =
036                "http://cxf.apache.org/configuration/transport/camel-server";
037        public static final String CAMEL_CLIENT_CONFIGURATION_URI =
038                "http://cxf.apache.org/configuration/transport/camel-template";
039        public static final String ENDPOINT_CONFIGURATION_URI =
040                "http://cxf.apache.org/jaxws/endpoint-config";
041        public static final String SERVICE_CONFIGURATION_URI =
042                "http://cxf.apache.org/jaxws/service-config";
043        public static final String PORT_CONFIGURATION_URI =
044                "http://cxf.apache.org/jaxws/port-config";
045        public static final String CAMEL_CLIENT_CONFIG_ID = "camel-template";
046        public static final String CAMEL_SERVER_CONFIG_ID = "camel-server";
047        public static final String CAMEL_REBASED_REPLY_TO = "org.apache.cxf.camel.server.replyto";
048        public static final String CAMEL_CORRELATION_ID = "org.apache.cxf.camel.correlationId";
049        public static final String CXF_EXCHANGE = "org.apache.cxf.message.exchange";
050        public static final String CAMEL_TRANSPORT_PREFIX = "camel:";
051        public static final String CAMEL_EXCHANGE = "org.apache.camel.exchange";
052        
053        private CamelTransportConstants() {
054            // Utility class
055        }
056    }