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 $Revision: 563665 $
021     */
022    public class CamelConstants {
023        public static final String TEXT_MESSAGE_TYPE = "text";
024        public static final String BINARY_MESSAGE_TYPE = "binary";
025        public static final String CAMEL_SERVER_REQUEST_HEADERS = "org.apache.cxf.camel.server.request.headers";
026        public static final String CAMEL_SERVER_RESPONSE_HEADERS = "org.apache.cxf.camel.server.response.headers";
027        public static final String CAMEL_REQUEST_MESSAGE = "org.apache.cxf.camel.request.message";
028        public static final String CAMEL_RESPONSE_MESSAGE = "org.apache.cxf.camel.reponse.message";
029        public static final String CAMEL_CLIENT_REQUEST_HEADERS = "org.apache.cxf.camel.template.request.headers";
030        public static final String CAMEL_CLIENT_RESPONSE_HEADERS =
031                "org.apache.cxf.camel.template.response.headers";
032        public static final String CAMEL_CLIENT_RECEIVE_TIMEOUT = "org.apache.cxf.camel.template.timeout";
033        public static final String CAMEL_SERVER_CONFIGURATION_URI =
034                "http://cxf.apache.org/configuration/transport/camel-server";
035        public static final String CAMEL_CLIENT_CONFIGURATION_URI =
036                "http://cxf.apache.org/configuration/transport/camel-template";
037        public static final String ENDPOINT_CONFIGURATION_URI =
038                "http://cxf.apache.org/jaxws/endpoint-config";
039        public static final String SERVICE_CONFIGURATION_URI =
040                "http://cxf.apache.org/jaxws/service-config";
041        public static final String PORT_CONFIGURATION_URI =
042                "http://cxf.apache.org/jaxws/port-config";
043        public static final String CAMEL_CLIENT_CONFIG_ID = "camel-template";
044        public static final String CAMEL_SERVER_CONFIG_ID = "camel-server";
045        public static final String CAMEL_REBASED_REPLY_TO = "org.apache.cxf.camel.server.replyto";
046        public static final String CAMEL_CORRELATION_ID = "org.apache.cxf.camel.correlationId";
047    }