Author: kayyagari
Date: Fri Nov 26 13:49:00 2010
New Revision: 1039353
URL: http://svn.apache.org/viewvc?rev=1039353&view=rev
Log:
o added a error message to be used in EncTicketPart
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=1039353&r1=1039352&r2=1039353&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
Fri Nov 26 13:49:00 2010
@@ -774,7 +774,8 @@ public enum I18n
ERR_738_CANNOT_ENCODE_KRB_PRIV("ERR_738_CANNOT_ENCODE_KRB_PRIV"),
ERR_739_CANNOT_ENCODE_KRB_CRED_INFO("ERR_739_CANNOT_ENCODE_KRB_CRED_INFO"),
ERR_740_CANNOT_ENCODE_ENC_KRB_CRED_PART("ERR_740_CANNOT_ENCODE_ENC_KRB_CRED_PART"),
- ERR_741_CANNOT_ENCODE_KRB_CRED("ERR_741_CANNOT_ENCODE_KRB_CRED");
+ ERR_741_CANNOT_ENCODE_KRB_CRED("ERR_741_CANNOT_ENCODE_KRB_CRED"),
+ ERR_742_CANNOT_ENCODE_ENC_TICKET_PART("ERR_742_CANNOT_ENCODE_ENC_TICKET_PART");
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=1039353&r1=1039352&r2=1039353&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
Fri Nov 26 13:49:00 2010
@@ -762,4 +762,5 @@ ERR_737_CANNOT_ENCODE_ENC_KRB_PRIV_PART=
ERR_738_CANNOT_ENCODE_KRB_PRIV=Cannot encode the KrbPriv object, the PDU size is {0} when
only {1} bytes has been allocated
ERR_739_CANNOT_ENCODE_KRB_CRED_INFO=Cannot encode the KrbCredInfo object, the PDU size is
{0} when only {1} bytes has been allocated
ERR_740_CANNOT_ENCODE_ENC_KRB_CRED_PART=Cannot encode the EncKrbCredPart object, the PDU
size is {0} when only {1} bytes has been allocated
-ERR_741_CANNOT_ENCODE_KRB_CRED=Cannot encode the KrbCred object, the PDU size is {0} when
only {1} bytes has been allocated
\ No newline at end of file
+ERR_741_CANNOT_ENCODE_KRB_CRED=Cannot encode the KrbCred object, the PDU size is {0} when
only {1} bytes has been allocated
+ERR_742_CANNOT_ENCODE_ENC_TICKET_PART=Cannot encode the EncTicketPart object, the PDU size
is {0} when only {1} bytes has been allocated
\ No newline at end of file
|