You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by di...@apache.org on 2007/02/05 12:22:27 UTC

svn commit: r503638 - /webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/wsdl/WSDLConstants.java

Author: dims
Date: Mon Feb  5 03:22:22 2007
New Revision: 503638

URL: http://svn.apache.org/viewvc?view=rev&rev=503638
Log:
mark fields as public

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

Modified: webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/wsdl/WSDLConstants.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/wsdl/WSDLConstants.java?view=diff&rev=503638&r1=503637&r2=503638
==============================================================================
--- webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/wsdl/WSDLConstants.java (original)
+++ webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/wsdl/WSDLConstants.java Mon Feb  5 03:22:22 2007
@@ -145,46 +145,46 @@
     public static interface WSDL20_2006Constants {
 
         // http://www.w3.org/TR/2006/CR-wsdl20-adjuncts-20060327/#in-only
-        String MEP_URI_IN_ONLY = "http://www.w3.org/2006/01/wsdl/in-only";
+        public String MEP_URI_IN_ONLY = "http://www.w3.org/2006/01/wsdl/in-only";
         // http://www.w3.org/TR/2006/CR-wsdl20-adjuncts-20060327/#robust-in-only
-        String MEP_URI_ROBUST_IN_ONLY = "http://www.w3.org/2006/01/wsdl/robust-in-only";
+        public String MEP_URI_ROBUST_IN_ONLY = "http://www.w3.org/2006/01/wsdl/robust-in-only";
         // http://www.w3.org/TR/2006/CR-wsdl20-adjuncts-20060327/#in-out
-        String MEP_URI_IN_OUT = "http://www.w3.org/2006/01/wsdl/in-out";
+        public String MEP_URI_IN_OUT = "http://www.w3.org/2006/01/wsdl/in-out";
         // http://www.w3.org/TR/2006/CR-wsdl20-adjuncts-20060327/#in-opt-out
-        String MEP_URI_IN_OPTIONAL_OUT = "http://www.w3.org/2006/01/wsdl/in-opt-out";
+        public String MEP_URI_IN_OPTIONAL_OUT = "http://www.w3.org/2006/01/wsdl/in-opt-out";
         // http://www.w3.org/TR/2006/CR-wsdl20-adjuncts-20060327/#out-only
-        String MEP_URI_OUT_ONLY = "http://www.w3.org/2006/01/wsdl/out-only";
+        public String MEP_URI_OUT_ONLY = "http://www.w3.org/2006/01/wsdl/out-only";
         // http://www.w3.org/TR/2006/CR-wsdl20-adjuncts-20060327/#robust-out-only
-        String MEP_URI_ROBUST_OUT_ONLY = "http://www.w3.org/2006/01/wsdl/robust-out-only";
+        public String MEP_URI_ROBUST_OUT_ONLY = "http://www.w3.org/2006/01/wsdl/robust-out-only";
         // http://www.w3.org/TR/2006/CR-wsdl20-adjuncts-20060327/#out-in
-        String MEP_URI_OUT_IN = "http://www.w3.org/2006/01/wsdl/out-in";
+        public String MEP_URI_OUT_IN = "http://www.w3.org/2006/01/wsdl/out-in";
         // http://www.w3.org/TR/2006/CR-wsdl20-adjuncts-20060327/#out-opt-in
-        String MEP_URI_OUT_OPTIONAL_IN = "http://www.w3.org/2006/01/wsdl/out-opt-in";
-        String DEFAULT_NAMESPACE_URI = "http://www.w3.org/2006/01/wsdl";
+        public String MEP_URI_OUT_OPTIONAL_IN = "http://www.w3.org/2006/01/wsdl/out-opt-in";
+        public String DEFAULT_NAMESPACE_URI = "http://www.w3.org/2006/01/wsdl";
 
-        String NMTOKEN_ANY = "#any";
-        String NMTOKEN_NONE = "#none";
-        String NMTOKEN_OTHER = "#other";
-        String NMTOKEN_ELEMENT = "#element";
+        public String NMTOKEN_ANY = "#any";
+        public String NMTOKEN_NONE = "#none";
+        public String NMTOKEN_OTHER = "#other";
+        public String NMTOKEN_ELEMENT = "#element";
 
     }
     
     public static interface WSDL20_2004_Constants {
 
-        String MEP_URI_IN_ONLY = "http://www.w3.org/2004/08/wsdl/in-only";
-        String MEP_URI_ROBUST_IN_ONLY = "http://www.w3.org/2004/08/wsdl/robust-in-only";
-        String MEP_URI_IN_OUT = "http://www.w3.org/2004/08/wsdl/in-out";
-        String MEP_URI_IN_OPTIONAL_OUT = "http://www.w3.org/2004/08/wsdl/in-opt-out";
-        String MEP_URI_OUT_ONLY = "http://www.w3.org/2004/08/wsdl/out-only";
-        String MEP_URI_ROBUST_OUT_ONLY = "http://www.w3.org/2004/08/wsdl/robust-out-only";
-        String MEP_URI_OUT_IN = "http://www.w3.org/2004/08/wsdl/out-in";
-        String MEP_URI_OUT_OPTIONAL_IN = "http://www.w3.org/2004/08/wsdl/out-opt-in";
-        String DEFAULT_NAMESPACE_URI = "http://www.w3.org/2004/08/wsdl";
+        public String MEP_URI_IN_ONLY = "http://www.w3.org/2004/08/wsdl/in-only";
+        public String MEP_URI_ROBUST_IN_ONLY = "http://www.w3.org/2004/08/wsdl/robust-in-only";
+        public String MEP_URI_IN_OUT = "http://www.w3.org/2004/08/wsdl/in-out";
+        public String MEP_URI_IN_OPTIONAL_OUT = "http://www.w3.org/2004/08/wsdl/in-opt-out";
+        public String MEP_URI_OUT_ONLY = "http://www.w3.org/2004/08/wsdl/out-only";
+        public String MEP_URI_ROBUST_OUT_ONLY = "http://www.w3.org/2004/08/wsdl/robust-out-only";
+        public String MEP_URI_OUT_IN = "http://www.w3.org/2004/08/wsdl/out-in";
+        public String MEP_URI_OUT_OPTIONAL_IN = "http://www.w3.org/2004/08/wsdl/out-opt-in";
+        public String DEFAULT_NAMESPACE_URI = "http://www.w3.org/2004/08/wsdl";
 
-        String NMTOKEN_ANY = "#any";
-        String NMTOKEN_NONE = "#none";
-        String NMTOKEN_OTHER = "#other";
-        String NMTOKEN_ELEMENT = "#element";
+        public String NMTOKEN_ANY = "#any";
+        public String NMTOKEN_NONE = "#none";
+        public String NMTOKEN_OTHER = "#other";
+        public String NMTOKEN_ELEMENT = "#element";
 
     }
 }



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org