donaldp 2002/11/09 05:38:13 Modified: fortress/src/java/org/apache/excalibur/fortress/util RoleManager.java Log: Remove some finals Revision Changes Path 1.9 +8 -8 jakarta-avalon-excalibur/fortress/src/java/org/apache/excalibur/fortress/util/RoleManager.java Index: RoleManager.java =================================================================== RCS file: /home/cvs/jakarta-avalon-excalibur/fortress/src/java/org/apache/excalibur/fortress/util/RoleManager.java,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- RoleManager.java 11 Oct 2002 12:08:50 -0000 1.8 +++ RoleManager.java 9 Nov 2002 13:38:13 -0000 1.9 @@ -51,7 +51,7 @@ /** * RoleManager Interface, use this to specify the Components and how they - * correspond to easy shorthand names. The RoleManager assumes a flat + * correspond to easy shorthand names. The RoleManager assumes a flat * relationship of shorthand names to classes, and classes to roles. * * @author <a href="mailto:bloritsch@;apache.org">Berin Loritsch</a> @@ -67,14 +67,14 @@ * match, and there is a parent RoleManager, the parent will be asked to * resolve the request. */ - Class getClassForName( final String shorthandName ); + Class getClassForName( String shorthandName ); /** * This method is merely a hint for serialization. If this RoleManager * does not have the match, and there is a parent RoleManager, the parent * will be asked to resolve the request. */ - String getNameForClass( final Class component ); + String getNameForClass( Class component ); /** * Get the Role name for a specific class. If the class does not belong @@ -83,7 +83,7 @@ * match, and there is a parent RoleManager, the parent will be asked to * resolve the request. */ - String getRoleForClass( final Class component ); + String getRoleForClass( Class component ); /** * Get an array of classes registered with the role manager that @@ -91,7 +91,7 @@ * there is a parent RoleManager, the parent will be asked to resolve the * request. */ - Class[] getClassesForRole( final String role ); + Class[] getClassesForRole( String role ); /** * Retrieves the handler class name for the specified class. This @@ -102,5 +102,5 @@ * @param clazz The class of the Component in question. * @return the Class instance of the ComponentHandler. */ - Class getHandlerClassForClass( final Class clazz ); -} + Class getHandlerClassForClass( Class clazz ); +} \ No newline at end of file
-- To unsubscribe, e-mail: <mailto:avalon-cvs-unsubscribe@;jakarta.apache.org> For additional commands, e-mail: <mailto:avalon-cvs-help@;jakarta.apache.org>