View Javadoc

1   /*
2    * $Id: CxfConstants.java 12283 2008-07-10 18:16:53Z dandiep $
3    * --------------------------------------------------------------------------------------
4    * Copyright (c) MuleSource, Inc.  All rights reserved.  http://www.mulesource.com
5    *
6    * The software in this package is published under the terms of the CPAL v1.0
7    * license, a copy of which has been included with this distribution in the
8    * LICENSE.txt file.
9    */
10  
11  package org.mule.transport.cxf;
12  
13  public interface CxfConstants 
14  {
15  
16      String DATA_BINDING = "databinding";
17      String BINDING_ID = "bindingId";
18      String FRONTEND = "frontend";
19      String JAX_WS_FRONTEND = "jaxws";
20      String SIMPLE_FRONTEND = "simple";
21      String WSDL_LOCATION = "wsdlLocation";
22      String NAMESPACE = "namespace";
23      String NAME = "name";
24      String CLIENT_CLASS = "clientClass";
25      String SERVICE_INTERFACE = "serviceInterface";
26      String CLIENT_PORT = "wsdlPort";
27      String OPERATION = "operation";
28      String PROXY = "proxy";
29      String SERVICE_CLASS = "serviceClass";
30      String FEATURES = "features";
31      String IN_INTERCEPTORS = "inInterceptors";
32      String IN_FAULT_INTERCEPTORS = "inFaultInterceptors";
33      String OUT_INTERCEPTORS = "outInterceptors";
34      String OUT_FAULT_INTERCEPTORS = "outFaultInterceptors";
35      String MTOM_ENABLED = "mtomEnabled";
36      String MULE_MESSAGE = "mule.message";
37      
38      String APPLY_FILTERS_TO_PROTOCOL = "applyFiltersToProtocol";
39      String APPLY_TRANSFORMERS_TO_PROTOCOL = "applyTransformersToProtocol";
40      String APPLY_SECURITY_TO_PROTOCOL = "applySecurityToProtocol";
41  }