You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ws.apache.org by ve...@apache.org on 2012/09/02 10:14:08 UTC

svn commit: r1379926 - /webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/om/OMConstants.java

Author: veithen
Date: Sun Sep  2 08:14:07 2012
New Revision: 1379926

URL: http://svn.apache.org/viewvc?rev=1379926&view=rev
Log:
Deprecated a couple of constants that were used in early prototypes of Axis2 and that are no longer relevant.

Modified:
    webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/om/OMConstants.java

Modified: webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/om/OMConstants.java
URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/om/OMConstants.java?rev=1379926&r1=1379925&r2=1379926&view=diff
==============================================================================
--- webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/om/OMConstants.java (original)
+++ webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/om/OMConstants.java Sun Sep  2 08:14:07 2012
@@ -29,17 +29,25 @@ public interface OMConstants {
     /** Field PULL_TYPE_BUILDER */
     short PULL_TYPE_BUILDER = 1;
 
-    /** Field ARRAY_ITEM_NSURI */
+    /**
+     * @deprecated This constant was used in early prototypes of Axis2 and is no longer relevant.
+     */
     String ARRAY_ITEM_NSURI =
             "http://axis.apache.org/encoding/Arrays";
 
-    /** Field ARRAY_ITEM_LOCALNAME */
+    /**
+     * @deprecated This constant was used in early prototypes of Axis2 and is no longer relevant.
+     */
     String ARRAY_ITEM_LOCALNAME = "item";
 
-    /** Field ARRAY_ITEM_NS_PREFIX */
+    /**
+     * @deprecated This constant was used in early prototypes of Axis2 and is no longer relevant.
+     */
     String ARRAY_ITEM_NS_PREFIX = "arrays";
 
-    /** Field ARRAY_ITEM_QNAME */
+    /**
+     * @deprecated This constant was used in early prototypes of Axis2 and is no longer relevant.
+     */
     String ARRAY_ITEM_QNAME =
             OMConstants.ARRAY_ITEM_NS_PREFIX + ':'
                     + OMConstants.ARRAY_ITEM_LOCALNAME;