You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by ch...@apache.org on 2005/05/05 08:09:22 UTC

svn commit: r168279 - /webservices/axis/trunk/java/modules/wsdl/src/org/apache/wsdl/WSDLConstants.java

Author: chathura
Date: Wed May  4 23:09:22 2005
New Revision: 168279

URL: http://svn.apache.org/viewcvs?rev=168279&view=rev
Log:
Added the Message lable constants In and Out

Modified:
    webservices/axis/trunk/java/modules/wsdl/src/org/apache/wsdl/WSDLConstants.java

Modified: webservices/axis/trunk/java/modules/wsdl/src/org/apache/wsdl/WSDLConstants.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/wsdl/src/org/apache/wsdl/WSDLConstants.java?rev=168279&r1=168278&r2=168279&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/wsdl/src/org/apache/wsdl/WSDLConstants.java (original)
+++ webservices/axis/trunk/java/modules/wsdl/src/org/apache/wsdl/WSDLConstants.java Wed May  4 23:09:22 2005
@@ -102,4 +102,32 @@
      */
     public static final String MEP_URI_OUT_OPTIONL_IN =
             "http://www.w3.org/2004/08/wsdl/out-opt-in";
+    
+    
+    //////////////////////////////////////////////////
+    //////////////// Message Labels///////////////////
+    //////////////////////////////////////////////////
+    
+    /**
+     * IN Message Lable value for following WSDL 2.0 defined  MEPs
+     * In-Only 
+     * Robust In-Only 
+     * In-Out 
+     * In-Optional-Out 
+     * Out-In 
+     * Out-Optional-In 
+     */
+    public static final String MESSAGE_LABLE_IN = "In";
+    
+    /**
+     * OUT Message Lable value for following WSDL 2.0 defined MEPs
+     * In-Out 
+     * In-Optional-Out 
+     * Out-Only 
+     * Robust Out-Only 
+     * Out-In 
+     * Out-Optional-In 
+     * 
+     */
+    public static final String MESSAGE_LABLE_OUT = "Out";
 }