View Javadoc
1   /*
2    * Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
3    * The software in this package is published under the terms of the CPAL v1.0
4    * license, a copy of which has been included with this distribution in the
5    * LICENSE.txt file.
6    */
7   package org.mule.module.cxf;
8   
9   /**
10   * Common SOAP constants
11   */
12  public interface SoapConstants
13  {
14  
15      public static final String WSDL_PROPERTY = "wsdl";
16      public static final String LIST_PROPERTY = "list";
17      public static final String SOAP_ENDPOINT_PREFIX = "soap:";
18      public static final String METHOD_NAMESPACE_PROPERTY = "methodNamespace";
19      // i don't udnerstand what is going on here, but these are two different properties and
20      // axis fails (in partiuclar, look at AxisJmsEndpointFormat test) if they are unified.
21      public static final String SOAP_ACTION_PROPERTY = "soapAction";
22      public static final String SOAP_ACTION_PROPERTY_CAPS = "SOAPAction";
23      public static final String WSDL_URL_PROPERTY = "WSDL_URL";
24      public static final String SOAP_NAMESPACE_PROPERTY = "SOAP_NAMESPACE_PROPERTY";
25      public static final String SERVICE_INTERFACES = "serviceInterfaces";
26      
27  }