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