luehe 2004/09/17 08:07:27 Modified: catalina/src/share/org/apache/catalina/startup Embedded.java LocalStrings.properties Log: Follow established naming conventions of error strings Revision Changes Path 1.23 +2 -2 jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/startup/Embedded.java Index: Embedded.java =================================================================== RCS file: /home/cvs/jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/startup/Embedded.java,v retrieving revision 1.22 retrieving revision 1.23 diff -u -r1.22 -r1.23 --- Embedded.java 16 Sep 2004 22:21:45 -0000 1.22 +++ Embedded.java 17 Sep 2004 15:07:27 -0000 1.23 @@ -716,7 +716,7 @@ String loginMethod) { if (!(authenticator instanceof Valve)) { throw new IllegalArgumentException( - sm.getString("authenticator.notInstanceOfValve")); + sm.getString("embedded.authenticatorNotInstanceOfValve")); } if (authenticators == null) { synchronized (this) { 1.7 +1 -1 jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/startup/LocalStrings.properties Index: LocalStrings.properties =================================================================== RCS file: /home/cvs/jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/startup/LocalStrings.properties,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- LocalStrings.properties 17 Sep 2004 15:01:30 -0000 1.6 +++ LocalStrings.properties 17 Sep 2004 15:07:27 -0000 1.7 @@ -1,4 +1,3 @@ -authenticator.notInstanceOfValve=Specified Authenticator is not a Valve contextConfig.applicationClose=Error closing application web.xml contextConfig.applicationConfig=Configuration error in application web.xml contextConfig.applicationListener=Exception creating listener of class {0} @@ -31,6 +30,7 @@ embedded.alreadyStarted=Embedded service has already been started embedded.noEngines=No engines have been defined yet embedded.notStarted=Embedded service has not yet been started +embedded.authenticatorNotInstanceOfValve=Specified Authenticator is not a Valve engineConfig.cce=Lifecycle event data object {0} is not an Engine engineConfig.start=EngineConfig: Processing START engineConfig.stop=EngineConfig: Processing STOP
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]