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 2005/05/05 14:48:52 UTC

svn commit: r168327 - /directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/spnego/pojo/SpnegoNegTokenInitPOJO.java

Author: elecharny
Date: Thu May  5 05:48:52 2005
New Revision: 168327

URL: http://svn.apache.org/viewcvs?rev=168327&view=rev
Log:
Updated the javadoc (misleading header).

Modified:
    directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/spnego/pojo/SpnegoNegTokenInitPOJO.java

Modified: directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/spnego/pojo/SpnegoNegTokenInitPOJO.java
URL: http://svn.apache.org/viewcvs/directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/spnego/pojo/SpnegoNegTokenInitPOJO.java?rev=168327&r1=168326&r2=168327&view=diff
==============================================================================
--- directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/spnego/pojo/SpnegoNegTokenInitPOJO.java (original)
+++ directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/spnego/pojo/SpnegoNegTokenInitPOJO.java Thu May  5 05:48:52 2005
@@ -21,8 +21,8 @@
 
 
 /**
- * The main POJO : every Ldap Message are encapsulated in it. It has a
- * messageId and Controls.
+ * The Spnego NegTokenInit POJO contains the he Negotiation token 
+ * sent from the client to the server. 
  * 
  * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
  */
@@ -30,11 +30,11 @@
 {
     //~ Instance fields ----------------------------------------------------------------------------
 
-    /** The mechTypes. It's an array, as it allows us to pre-allocate a specific number of OID */
-    private OID[]       mechTypeList;
-    
     /** The expected length of the NegTokenInitSequence element */
     private int negTokenInitSequenceExpectedLength;
+    
+    /** The mechTypes. It's an array, as it allows us to pre-allocate a specific number of OID */
+    private OID[]       mechTypeList;
     
     /** The expected length of the mech types element */
     private int mechTypesExpectedLength;