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;
018    
019    /**
020     * Constants used in this module
021     *
022     * @version $Revision: 19595 $
023     */
024    public interface CxfConstants {
025        String METHOD = "method";
026        String SERVICE_CLASS = "serviceClass";
027        // CamelCXFDataFormat is used as exchange property key
028        String DATA_FORMAT_PROPERTY = "CamelCXFDataFormat";
029        String SET_DEFAULT_BUS = "setDefaultBus";
030        String WSDL_URL = "wsdlURL";
031        String ADDRESS = "address";
032        String SERVICE_NAME = "serviceName";
033        String PORT_NAME = "portName";
034        String SERVICE_LOCALNAME = "serviceLocalName";
035        String SERVICE_NAMESPACE = "serviceNamespace";
036        String PORT_LOCALNAME = "endpointLocalName";
037        String PORT_NAMESPACE = "endpointNamespace";
038        String PROTOCOL_NAME_RES = "res";
039        String OPERATION_NAME = "operationName";
040        String OPERATION_NAMESPACE = "operationNamespace";
041        String SPRING_CONTEXT_ENDPOINT = "bean:";
042        String CAMEL_TRANSPORT_PREFIX = "camel:";
043        String CXF_EXCHANGE = "org.apache.cxf.message.exchange";
044        String CAMEL_EXCHANGE = "org.apache.camel.exchange";
045        String CAMEL_CXF_RS_USING_HTTP_API = "CamelCxfRsUsingHttpAPI";
046        String CAMEL_CXF_RS_VAR_VALUES = "CamelCxfRsVarValues";
047        String CAMEL_CXF_RS_RESPONSE_CLASS = "CamelCxfRsResponseClass";
048        String CAMEL_CXF_RS_RESPONSE_GENERIC_TYPE = "CamelCxfRsResponseGenericType";
049        String CAMEL_CXF_RS_QUERY_MAP = "CamelCxfRsQueryMap";
050        String CAMEL_CXF_RS_EXTRACT_ENTITY = "CamelCxfRsExtractEntity";
051        String CAMEL_CXF_RS_OPERATION_RESOURCE_INFO_STACK = "CamelCxfRsOperationResourceInfoStack";
052        String CAMEL_CXF_ATTACHMENTS = "CamelAttachments";
053    }
054    
055    
056