You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by el...@apache.org on 2006/01/28 01:24:35 UTC

svn commit: r373040 - /directory/trunks/common/ldap/src/main/java/org/apache/ldap/common/codec/LdapStatesEnum.java

Author: elecharny
Date: Fri Jan 27 16:24:30 2006
New Revision: 373040

URL: http://svn.apache.org/viewcvs?rev=373040&view=rev
Log:
Added a lacking transition 

Modified:
    directory/trunks/common/ldap/src/main/java/org/apache/ldap/common/codec/LdapStatesEnum.java

Modified: directory/trunks/common/ldap/src/main/java/org/apache/ldap/common/codec/LdapStatesEnum.java
URL: http://svn.apache.org/viewcvs/directory/trunks/common/ldap/src/main/java/org/apache/ldap/common/codec/LdapStatesEnum.java?rev=373040&r1=373039&r2=373040&view=diff
==============================================================================
--- directory/trunks/common/ldap/src/main/java/org/apache/ldap/common/codec/LdapStatesEnum.java (original)
+++ directory/trunks/common/ldap/src/main/java/org/apache/ldap/common/codec/LdapStatesEnum.java Fri Jan 27 16:24:30 2006
@@ -339,18 +339,21 @@
     /** LdapResult referral sequence Tag */
     public static int LDAP_RESULT_REFERRAL_SEQUENCE_TAG = 6;
 
+    /** LdapResult referral sequence Value */
+    public static int LDAP_RESULT_REFERRAL_SEQUENCE_VALUE = 7;
+
     // LdapResult referral ---------------------------------------------------
     /** LdapResult referral Tag */
-    public static int LDAP_RESULT_REFERRAL_TAG = 7;
+    public static int LDAP_RESULT_REFERRAL_TAG = 8;
 
     /** LdapResult referral Value */
-    public static int LDAP_RESULT_REFERRAL_VALUE = 8;
+    public static int LDAP_RESULT_REFERRAL_VALUE = 9;
 
     /** LdapResult referral Tag loop */
-    public static int LDAP_RESULT_REFERRAL_LOOP_TAG = 9;
+    public static int LDAP_RESULT_REFERRAL_LOOP_TAG = 10;
 
     /** The last state */
-    public static int LAST_LDAP_RESULT_STATE = 10;
+    public static int LAST_LDAP_RESULT_STATE = 11;
 
     //=========================================================================
     // SearchRequest grammar states 
@@ -1197,6 +1200,7 @@
             "LDAP_RESULT_ERROR_MESSAGE_TAG",
             "LDAP_RESULT_ERROR_MESSAGE_VALUE",
             "LDAP_RESULT_REFERRAL_SEQUENCE_TAG",
+            "LDAP_RESULT_REFERRAL_SEQUENCE_VALUE",
             "LDAP_RESULT_REFERRAL_TAG",
             "LDAP_RESULT_REFERRAL_VALUE",
             "LDAP_RESULT_REFERRAL_LOOP_TAG"