Coverage Report - org.apache.camel.component.cxf.transport.CamelConstants
 
Classes in this File Line Coverage Branch Coverage Complexity
CamelConstants
0% 
N/A 
0
 
 1  
 /**
 2  
  * Licensed to the Apache Software Foundation (ASF) under one or more
 3  
  * contributor license agreements.  See the NOTICE file distributed with
 4  
  * this work for additional information regarding copyright ownership.
 5  
  * The ASF licenses this file to You under the Apache License, Version 2.0
 6  
  * (the "License"); you may not use this file except in compliance with
 7  
  * the License.  You may obtain a copy of the License at
 8  
  *
 9  
  *      http://www.apache.org/licenses/LICENSE-2.0
 10  
  *
 11  
  * Unless required by applicable law or agreed to in writing, software
 12  
  * distributed under the License is distributed on an "AS IS" BASIS,
 13  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 14  
  * See the License for the specific language governing permissions and
 15  
  * limitations under the License.
 16  
  */
 17  
 package org.apache.camel.component.cxf.transport;
 18  
 
 19  
 /**
 20  
  * @version $Revision: 563665 $
 21  
  */
 22  0
 public class CamelConstants {
 23  
     public static final String TEXT_MESSAGE_TYPE = "text";
 24  
     public static final String BINARY_MESSAGE_TYPE = "binary";
 25  
     public static final String CAMEL_SERVER_REQUEST_HEADERS = "org.apache.cxf.camel.server.request.headers";
 26  
     public static final String CAMEL_SERVER_RESPONSE_HEADERS = "org.apache.cxf.camel.server.response.headers";
 27  
     public static final String CAMEL_REQUEST_MESSAGE = "org.apache.cxf.camel.request.message";
 28  
     public static final String CAMEL_RESPONSE_MESSAGE = "org.apache.cxf.camel.reponse.message";
 29  
     public static final String CAMEL_CLIENT_REQUEST_HEADERS = "org.apache.cxf.camel.template.request.headers";
 30  
     public static final String CAMEL_CLIENT_RESPONSE_HEADERS =
 31  
             "org.apache.cxf.camel.template.response.headers";
 32  
     public static final String CAMEL_CLIENT_RECEIVE_TIMEOUT = "org.apache.cxf.camel.template.timeout";
 33  
     public static final String CAMEL_SERVER_CONFIGURATION_URI =
 34  
             "http://cxf.apache.org/configuration/transport/camel-server";
 35  
     public static final String CAMEL_CLIENT_CONFIGURATION_URI =
 36  
             "http://cxf.apache.org/configuration/transport/camel-template";
 37  
     public static final String ENDPOINT_CONFIGURATION_URI =
 38  
             "http://cxf.apache.org/jaxws/endpoint-config";
 39  
     public static final String SERVICE_CONFIGURATION_URI =
 40  
             "http://cxf.apache.org/jaxws/service-config";
 41  
     public static final String PORT_CONFIGURATION_URI =
 42  
             "http://cxf.apache.org/jaxws/port-config";
 43  
     public static final String CAMEL_CLIENT_CONFIG_ID = "camel-template";
 44  
     public static final String CAMEL_SERVER_CONFIG_ID = "camel-server";
 45  
     public static final String CAMEL_REBASED_REPLY_TO = "org.apache.cxf.camel.server.replyto";
 46  
     public static final String CAMEL_CORRELATION_ID = "org.apache.cxf.camel.correlationId";
 47  
 }