/*\r
- * Copyright 2001-2004 The Apache Software Foundation.\r
+ * Copyright 2001-2006 The Apache Software Foundation.\r
* \r
* Licensed under the Apache License, Version 2.0 (the "License");\r
* you may not use this file except in compliance with the License.\r
} else if( "java.lang.Integer".equals( type ) ||\r
"int".equals( type )) {\r
objValue=new Integer( value );\r
+ } else if( "java.lang.Long".equals( type ) ||\r
+ "long".equals( type )) {\r
+ objValue=new Long( value );\r
} else if( "java.lang.Boolean".equals( type ) ||\r
"boolean".equals( type )) {\r
objValue=new Boolean( value );\r