KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mule > providers > soap > SoapConstants


1 /*
2  * $Id: SoapConstants.java 4323 2006-12-19 15:55:15Z lajos $
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 MuleSource MPL
7  * license, a copy of which has been included with this distribution in the
8  * LICENSE.txt file.
9  */

10
11 package org.mule.providers.soap;
12
13 /**
14  * Common Sopa constants
15  *
16  * @author <a HREF="mailto:ross.mason@symphonysoft.com">Ross Mason</a>
17  * @version $Revision: 4323 $
18  */

19 public interface SoapConstants
20 {
21
22     public static final String JavaDoc WSDL_PROPERTY = "wsdl";
23     public static final String JavaDoc LIST_PROPERTY = "list";
24     public static final String JavaDoc SOAP_ENDPOINT_PREFIX = "soap:";
25     public static final String JavaDoc METHOD_NAMESPACE_PROPERTY = "methodNamespace";
26     public static final String JavaDoc SOAP_ACTION_PROPERTY = "soapAction";
27     public static final String JavaDoc WSDL_URL_PROPERTY = "WSDL_URL";
28     public static final String JavaDoc SOAP_NAMESPACE_PROPERTY = "SOAP_NAMESPACE_PROPERTY";
29 }
30
Popular Tags