You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by ka...@apache.org on 2010/11/22 17:35:22 UTC

svn commit: r1037769 - in /directory/apacheds/trunk/i18n/src/main: java/org/apache/directory/server/i18n/I18n.java resources/org/apache/directory/server/i18n/errors.properties

Author: kayyagari
Date: Mon Nov 22 16:35:22 2010
New Revision: 1037769

URL: http://svn.apache.org/viewvc?rev=1037769&view=rev
Log:
o added error message for KrbPriv message codec

Modified:
    directory/apacheds/trunk/i18n/src/main/java/org/apache/directory/server/i18n/I18n.java
    directory/apacheds/trunk/i18n/src/main/resources/org/apache/directory/server/i18n/errors.properties

Modified: directory/apacheds/trunk/i18n/src/main/java/org/apache/directory/server/i18n/I18n.java
URL: http://svn.apache.org/viewvc/directory/apacheds/trunk/i18n/src/main/java/org/apache/directory/server/i18n/I18n.java?rev=1037769&r1=1037768&r2=1037769&view=diff
==============================================================================
--- directory/apacheds/trunk/i18n/src/main/java/org/apache/directory/server/i18n/I18n.java (original)
+++ directory/apacheds/trunk/i18n/src/main/java/org/apache/directory/server/i18n/I18n.java Mon Nov 22 16:35:22 2010
@@ -769,7 +769,9 @@ public enum I18n
     ERR_733("ERR_733"),
     ERR_734_CANNOT_ENCODE_KRBERROR("ERR_734_CANNOT_ENCODE_KRBERROR"),
     ERR_735_CANNOT_ENCODE_KRBSAFEBODY("ERR_735_CANNOT_ENCODE_KRBSAFEBODY"),
-    ERR_736_CANNOT_ENCODE_KRBSAFE("ERR_736_CANNOT_ENCODE_KRBSAFE");
+    ERR_736_CANNOT_ENCODE_KRBSAFE("ERR_736_CANNOT_ENCODE_KRBSAFE"),
+    ERR_737_CANNOT_ENCODE_ENC_KRB_PRIV_PART("ERR_737_CANNOT_ENCODE_ENC_KRB_PRIV_PART"),
+    ERR_738_CANNOT_ENCODE_KRB_PRIV("ERR_738_CANNOT_ENCODE_KRB_PRIV");
     
     private static ResourceBundle errBundle = ResourceBundle
                 .getBundle( "org.apache.directory.server.i18n.errors" );

Modified: directory/apacheds/trunk/i18n/src/main/resources/org/apache/directory/server/i18n/errors.properties
URL: http://svn.apache.org/viewvc/directory/apacheds/trunk/i18n/src/main/resources/org/apache/directory/server/i18n/errors.properties?rev=1037769&r1=1037768&r2=1037769&view=diff
==============================================================================
--- directory/apacheds/trunk/i18n/src/main/resources/org/apache/directory/server/i18n/errors.properties (original)
+++ directory/apacheds/trunk/i18n/src/main/resources/org/apache/directory/server/i18n/errors.properties Mon Nov 22 16:35:22 2010
@@ -757,4 +757,6 @@ ERR_732=Cannot process a Request while b
 ERR_733=Principal is not a valid Name : {0}
 ERR_734_CANNOT_ENCODE_KRBERROR=Cannot encode the KrbError object, the PDU size is {0} when only {1} bytes has been allocated
 ERR_735_CANNOT_ENCODE_KRBSAFEBODY=Cannot encode the KrbSafeBody object, the PDU size is {0} when only {1} bytes has been allocated
-ERR_736_CANNOT_ENCODE_KRBSAFE=Cannot encode the KrbSafe object, the PDU size is {0} when only {1} bytes has been allocated
\ No newline at end of file
+ERR_736_CANNOT_ENCODE_KRBSAFE=Cannot encode the KrbSafe object, the PDU size is {0} when only {1} bytes has been allocated
+ERR_737_CANNOT_ENCODE_ENC_KRB_PRIV_PART=Cannot encode the EncKrbPrivPart object, the PDU size is {0} when only {1} bytes has been allocated
+ERR_738_CANNOT_ENCODE_KRB_PRIV=Cannot encode the KrbPriv object, the PDU size is {0} when only {1} bytes has been allocated
\ No newline at end of file