[jboss-cvs] JBossAS SVN: r66439 - in trunk/server/src/main/org/jboss: ejb/plugins and 3 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Oct 25 11:06:37 EDT 2007


Author: dimitris at jboss.org
Date: 2007-10-25 11:06:36 -0400 (Thu, 25 Oct 2007)
New Revision: 66439

Modified:
   trunk/server/src/main/org/jboss/ejb/Container.java
   trunk/server/src/main/org/jboss/ejb/ContainerPlugin.java
   trunk/server/src/main/org/jboss/ejb/EJBProxyFactory.java
   trunk/server/src/main/org/jboss/ejb/EJBProxyFactoryContainer.java
   trunk/server/src/main/org/jboss/ejb/EnterpriseContext.java
   trunk/server/src/main/org/jboss/ejb/EntityContainer.java
   trunk/server/src/main/org/jboss/ejb/EntityEnterpriseContext.java
   trunk/server/src/main/org/jboss/ejb/EntityPersistenceManager.java
   trunk/server/src/main/org/jboss/ejb/EntityPersistenceStore.java
   trunk/server/src/main/org/jboss/ejb/InstanceCache.java
   trunk/server/src/main/org/jboss/ejb/InstancePool.java
   trunk/server/src/main/org/jboss/ejb/InstancePoolContainer.java
   trunk/server/src/main/org/jboss/ejb/Interceptor.java
   trunk/server/src/main/org/jboss/ejb/MessageDrivenContainer.java
   trunk/server/src/main/org/jboss/ejb/MessageDrivenEnterpriseContext.java
   trunk/server/src/main/org/jboss/ejb/StatefulSessionContainer.java
   trunk/server/src/main/org/jboss/ejb/StatefulSessionEnterpriseContext.java
   trunk/server/src/main/org/jboss/ejb/StatefulSessionPersistenceManager.java
   trunk/server/src/main/org/jboss/ejb/StatelessSessionContainer.java
   trunk/server/src/main/org/jboss/ejb/StatelessSessionEnterpriseContext.java
   trunk/server/src/main/org/jboss/ejb/plugins/AbstractInterceptor.java
   trunk/server/src/main/org/jboss/ejb/plugins/BMPPersistenceManager.java
   trunk/server/src/main/org/jboss/ejb/plugins/CMPFilePersistenceManager.java
   trunk/server/src/main/org/jboss/ejb/plugins/EntityInstancePool.java
   trunk/server/src/main/org/jboss/ejb/plugins/LogInterceptor.java
   trunk/server/src/main/org/jboss/ejb/plugins/MessageDrivenInstanceInterceptor.java
   trunk/server/src/main/org/jboss/ejb/plugins/MessageDrivenInstancePool.java
   trunk/server/src/main/org/jboss/ejb/plugins/ProxyFactoryFinderInterceptor.java
   trunk/server/src/main/org/jboss/ejb/plugins/SessionObjectInputStream.java
   trunk/server/src/main/org/jboss/ejb/plugins/SessionObjectOutputStream.java
   trunk/server/src/main/org/jboss/ejb/plugins/StatefulSessionFilePersistenceManager.java
   trunk/server/src/main/org/jboss/ejb/plugins/StatelessSessionInstancePool.java
   trunk/server/src/main/org/jboss/ejb/plugins/TxInterceptorCMT.java
   trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCAbstractQueryCommand.java
   trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCActivateEntityCommand.java
   trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCCreateEntityCommand.java
   trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCDeclaredSQLQuery.java
   trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCDestroyCommand.java
   trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCFindAllQuery.java
   trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCFindByQuery.java
   trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCFindEntitiesCommand.java
   trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCFindEntityCommand.java
   trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCInitCommand.java
   trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCLoadEntityCommand.java
   trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCPassivateEntityCommand.java
   trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCQueryManager.java
   trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCRemoveEntityCommand.java
   trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCStartCommand.java
   trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCStopCommand.java
   trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCStoreEntityCommand.java
   trunk/server/src/main/org/jboss/jmx/adaptor/rmi/RMIAdaptor.java
   trunk/server/src/main/org/jboss/proxy/ejb/EJBMetaDataImpl.java
Log:
simplify Rickard's name to get rid of all those unmappable character warnings in java5

Modified: trunk/server/src/main/org/jboss/ejb/Container.java
===================================================================
--- trunk/server/src/main/org/jboss/ejb/Container.java	2007-10-25 14:53:53 UTC (rev 66438)
+++ trunk/server/src/main/org/jboss/ejb/Container.java	2007-10-25 15:06:36 UTC (rev 66439)
@@ -111,7 +111,7 @@
  *
  * @see EJBDeployer
  *
- * @author <a href="mailto:rickard.oberg at jboss.org">Rickard �berg</a>
+ * @author <a href="mailto:rickard.oberg at jboss.org">Rickard Oberg</a>
  * @author <a href="mailto:marc.fleury at jboss.org">Marc Fleury</a>
  * @author <a href="mailto:Scott.Stark at jboss.org">Scott Stark</a>.
  * @author <a href="bill at burkecentral.com">Bill Burke</a>

Modified: trunk/server/src/main/org/jboss/ejb/ContainerPlugin.java
===================================================================
--- trunk/server/src/main/org/jboss/ejb/ContainerPlugin.java	2007-10-25 14:53:53 UTC (rev 66438)
+++ trunk/server/src/main/org/jboss/ejb/ContainerPlugin.java	2007-10-25 15:06:36 UTC (rev 66439)
@@ -29,7 +29,7 @@
  * <p>All plugin interfaces must extend this interface.
  *      
  * @see Service
- * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Öberg</a>
+ * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Oberg</a>
  * @version $Revision$
  */
 public interface ContainerPlugin

Modified: trunk/server/src/main/org/jboss/ejb/EJBProxyFactory.java
===================================================================
--- trunk/server/src/main/org/jboss/ejb/EJBProxyFactory.java	2007-10-25 14:53:53 UTC (rev 66438)
+++ trunk/server/src/main/org/jboss/ejb/EJBProxyFactory.java	2007-10-25 15:06:36 UTC (rev 66439)
@@ -43,7 +43,7 @@
  *
  * @see Container
  * 
- * @author <a href="mailto:rickard.oberg at telkel.com">Rickard �berg</a>
+ * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Oberg</a>
  * @author <a href="mailto:marc.fleury at telkel.com">Marc Fleury</a>
  * @version $Revision$
  *

Modified: trunk/server/src/main/org/jboss/ejb/EJBProxyFactoryContainer.java
===================================================================
--- trunk/server/src/main/org/jboss/ejb/EJBProxyFactoryContainer.java	2007-10-25 14:53:53 UTC (rev 66438)
+++ trunk/server/src/main/org/jboss/ejb/EJBProxyFactoryContainer.java	2007-10-25 15:06:36 UTC (rev 66439)
@@ -29,7 +29,7 @@
  *
  * @see EJBProxyFactory
  * 
- * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Öberg</a>
+ * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Oberg</a>
  * @author <a href="mailto:docodan at mvcsoft.com">Daniel OConnor</a>
  * @version $Revision$
  */

Modified: trunk/server/src/main/org/jboss/ejb/EnterpriseContext.java
===================================================================
--- trunk/server/src/main/org/jboss/ejb/EnterpriseContext.java	2007-10-25 14:53:53 UTC (rev 66438)
+++ trunk/server/src/main/org/jboss/ejb/EnterpriseContext.java	2007-10-25 15:06:36 UTC (rev 66439)
@@ -72,7 +72,7 @@
  * @see StatelessSessionEnterpriseContext
  * @see EntityEnterpriseContext
  *
- * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Öberg</a>
+ * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Oberg</a>
  * @author <a href="mailto:marc.fleury at telkel.com">Marc Fleury</a>
  * @author <a href="mailto:sebastien.alborini at m4x.org">Sebastien Alborini</a>
  * @author <a href="mailto:juha at jboss.org">Juha Lindfors</a>

Modified: trunk/server/src/main/org/jboss/ejb/EntityContainer.java
===================================================================
--- trunk/server/src/main/org/jboss/ejb/EntityContainer.java	2007-10-25 14:53:53 UTC (rev 66438)
+++ trunk/server/src/main/org/jboss/ejb/EntityContainer.java	2007-10-25 15:06:36 UTC (rev 66439)
@@ -58,7 +58,7 @@
  * @see Container
  * @see EntityEnterpriseContext
  *
- * @author <a href="mailto:rickard.oberg at telkel.com">Rickard �berg</a>
+ * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Oberg</a>
  * @author <a href="mailto:marc.fleury at telkel.com">Marc Fleury</a>
  * @author <a href="mailto:sebastien.alborini at m4x.org">Sebastien Alborini</a>
  * @author <a href="mailto:docodan at mvcsoft.com">Daniel OConnor</a>

Modified: trunk/server/src/main/org/jboss/ejb/EntityEnterpriseContext.java
===================================================================
--- trunk/server/src/main/org/jboss/ejb/EntityEnterpriseContext.java	2007-10-25 14:53:53 UTC (rev 66438)
+++ trunk/server/src/main/org/jboss/ejb/EntityEnterpriseContext.java	2007-10-25 15:06:36 UTC (rev 66439)
@@ -48,7 +48,7 @@
  *
  * @see EnterpriseContext
  * 
- * @author <a href="mailto:rickard.oberg at telkel.com">Rickard �berg</a>
+ * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Oberg</a>
  * @author <a href="mailto:marc.fleury at telkel.com">Marc Fleury</a>
  * @author <a href="mailto:docodan at mvcsoft.com">Daniel OConnor</a>
  * @version $Revision$

Modified: trunk/server/src/main/org/jboss/ejb/EntityPersistenceManager.java
===================================================================
--- trunk/server/src/main/org/jboss/ejb/EntityPersistenceManager.java	2007-10-25 14:53:53 UTC (rev 66438)
+++ trunk/server/src/main/org/jboss/ejb/EntityPersistenceManager.java	2007-10-25 15:06:36 UTC (rev 66439)
@@ -38,7 +38,7 @@
  *
  * @see EntityContainer
  * 
- * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Öberg</a>
+ * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Oberg</a>
  * @author <a href="mailto:dain at daingroup.com">Dain Sundstrom</a>
  * @version $Revision$
  */

Modified: trunk/server/src/main/org/jboss/ejb/EntityPersistenceStore.java
===================================================================
--- trunk/server/src/main/org/jboss/ejb/EntityPersistenceStore.java	2007-10-25 14:53:53 UTC (rev 66438)
+++ trunk/server/src/main/org/jboss/ejb/EntityPersistenceStore.java	2007-10-25 15:06:36 UTC (rev 66439)
@@ -37,7 +37,7 @@
  * 
  * @see EntityPersistenceManager
  * 
- * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Öberg</a>
+ * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Oberg</a>
  * @author <a href="mailto:marc.fleury at telkel.com">Marc Fleury</a>
  * @author <a href="mailto:simone.bordet at compaq.com">Simone Bordet</a>
  * @version $Revision$

Modified: trunk/server/src/main/org/jboss/ejb/InstanceCache.java
===================================================================
--- trunk/server/src/main/org/jboss/ejb/InstanceCache.java	2007-10-25 14:53:53 UTC (rev 66438)
+++ trunk/server/src/main/org/jboss/ejb/InstanceCache.java	2007-10-25 15:06:36 UTC (rev 66439)
@@ -27,7 +27,7 @@
 /**
  * The plugin that gives a container a cache for bean instances.
  *      
- * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Öberg</a>
+ * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Oberg</a>
  * @author <a href="mailto:simone.bordet at compaq.com">Simone Bordet</a>
  * @version $Revision$
  */

Modified: trunk/server/src/main/org/jboss/ejb/InstancePool.java
===================================================================
--- trunk/server/src/main/org/jboss/ejb/InstancePool.java	2007-10-25 14:53:53 UTC (rev 66438)
+++ trunk/server/src/main/org/jboss/ejb/InstancePool.java	2007-10-25 15:06:36 UTC (rev 66439)
@@ -25,7 +25,7 @@
 /**
  * Defines the model for a EnterpriseContext instance pool.
  *
- * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Öberg</a>
+ * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Oberg</a>
  * @version $Revision$
  */
 public interface InstancePool

Modified: trunk/server/src/main/org/jboss/ejb/InstancePoolContainer.java
===================================================================
--- trunk/server/src/main/org/jboss/ejb/InstancePoolContainer.java	2007-10-25 14:53:53 UTC (rev 66438)
+++ trunk/server/src/main/org/jboss/ejb/InstancePoolContainer.java	2007-10-25 15:06:36 UTC (rev 66439)
@@ -29,7 +29,7 @@
  *
  * @see InstancePool
  * 
- * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Öberg</a>
+ * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Oberg</a>
  * @version $Revision$
  */
 public interface InstancePoolContainer

Modified: trunk/server/src/main/org/jboss/ejb/Interceptor.java
===================================================================
--- trunk/server/src/main/org/jboss/ejb/Interceptor.java	2007-10-25 14:53:53 UTC (rev 66438)
+++ trunk/server/src/main/org/jboss/ejb/Interceptor.java	2007-10-25 15:06:36 UTC (rev 66439)
@@ -27,7 +27,7 @@
 /**
  * Provides the interface for all container interceptors.
  *      
- * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Öberg</a>
+ * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Oberg</a>
  * @author <a href="mailto:marc.fleury at jboss.org">Marc Fleury</a>
  * @version $Revision$
  *

Modified: trunk/server/src/main/org/jboss/ejb/MessageDrivenContainer.java
===================================================================
--- trunk/server/src/main/org/jboss/ejb/MessageDrivenContainer.java	2007-10-25 14:53:53 UTC (rev 66438)
+++ trunk/server/src/main/org/jboss/ejb/MessageDrivenContainer.java	2007-10-25 15:06:36 UTC (rev 66439)
@@ -46,7 +46,7 @@
  * The container for <em>MessageDriven</em> beans.
  *
  * @author <a href="mailto:peter.antman at tim.se">Peter Antman</a>.
- * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Öberg</a>
+ * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Oberg</a>
  * @author <a href="mailto:marc.fleury at telkel.com">Marc Fleury</a>
  * @author <a href="mailto:docodan at mvcsoft.com">Daniel OConnor</a>
  * @author <a href="mailto:jason at planet57.com">Jason Dillon</a>

Modified: trunk/server/src/main/org/jboss/ejb/MessageDrivenEnterpriseContext.java
===================================================================
--- trunk/server/src/main/org/jboss/ejb/MessageDrivenEnterpriseContext.java	2007-10-25 14:53:53 UTC (rev 66438)
+++ trunk/server/src/main/org/jboss/ejb/MessageDrivenEnterpriseContext.java	2007-10-25 15:06:36 UTC (rev 66439)
@@ -45,7 +45,7 @@
  * Context for message driven beans.
  * 
  * @author <a href="mailto:peter.antman at tim.se">Peter Antman</a>.
- * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Öberg</a>
+ * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Oberg</a>
  * @author <a href="sebastien.alborini at m4x.org">Sebastien Alborini</a>
  * @author <a href="mailto:jason at planet57.com">Jason Dillon</a>
  * @version <tt>$Revision$</tt>

Modified: trunk/server/src/main/org/jboss/ejb/StatefulSessionContainer.java
===================================================================
--- trunk/server/src/main/org/jboss/ejb/StatefulSessionContainer.java	2007-10-25 14:53:53 UTC (rev 66438)
+++ trunk/server/src/main/org/jboss/ejb/StatefulSessionContainer.java	2007-10-25 15:06:36 UTC (rev 66439)
@@ -42,7 +42,7 @@
 
 /**
  * The container for <em>stateful</em> session beans.
- * @author <a href="mailto:rickard.oberg at telkel.com">Rickard �berg</a>
+ * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Oberg</a>
  * @author <a href="mailto:docodan at mvcsoft.com">Daniel OConnor</a>
  * @author <a href="mailto:marc.fleury at jboss.org">Marc Fleury</a>
  * @author <a href="mailto:scott.stark at jboss.org">Scott Stark</a>

Modified: trunk/server/src/main/org/jboss/ejb/StatefulSessionEnterpriseContext.java
===================================================================
--- trunk/server/src/main/org/jboss/ejb/StatefulSessionEnterpriseContext.java	2007-10-25 14:53:53 UTC (rev 66438)
+++ trunk/server/src/main/org/jboss/ejb/StatefulSessionEnterpriseContext.java	2007-10-25 15:06:36 UTC (rev 66439)
@@ -39,7 +39,7 @@
 /**
  * The enterprise context for stateful session beans.
  *
- * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Öberg</a>
+ * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Oberg</a>
  * @author <a href="mailto:docodan at mvcsoft.com">Daniel OConnor</a>
  * @version $Revision$
  */

Modified: trunk/server/src/main/org/jboss/ejb/StatefulSessionPersistenceManager.java
===================================================================
--- trunk/server/src/main/org/jboss/ejb/StatefulSessionPersistenceManager.java	2007-10-25 14:53:53 UTC (rev 66438)
+++ trunk/server/src/main/org/jboss/ejb/StatefulSessionPersistenceManager.java	2007-10-25 15:06:36 UTC (rev 66439)
@@ -29,7 +29,7 @@
  * The interface for persisting stateful session beans.
  *
  * @version <tt>$Revision$</tt>
- * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Öberg</a>
+ * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Oberg</a>
  * @author <a href="mailto:jason at planet57.com">Jason Dillon</a>
  */
 public interface StatefulSessionPersistenceManager

Modified: trunk/server/src/main/org/jboss/ejb/StatelessSessionContainer.java
===================================================================
--- trunk/server/src/main/org/jboss/ejb/StatelessSessionContainer.java	2007-10-25 14:53:53 UTC (rev 66438)
+++ trunk/server/src/main/org/jboss/ejb/StatelessSessionContainer.java	2007-10-25 15:06:36 UTC (rev 66439)
@@ -39,7 +39,7 @@
 /**
  * The container for <em>stateless</em> session beans.
  *
- * @author <a href="mailto:rickard.oberg at telkel.com">Rickard �berg</a>
+ * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Oberg</a>
  * @author <a href="mailto:marc.fleury at telkel.com">Marc Fleury</a>
  * @author <a href="mailto:docodan at mvcsoft.com">Daniel OConnor</a>
  * @author <a href="mailto:Christoph.Jung at infor.de">Christoph G. Jung</a>

Modified: trunk/server/src/main/org/jboss/ejb/StatelessSessionEnterpriseContext.java
===================================================================
--- trunk/server/src/main/org/jboss/ejb/StatelessSessionEnterpriseContext.java	2007-10-25 14:53:53 UTC (rev 66438)
+++ trunk/server/src/main/org/jboss/ejb/StatelessSessionEnterpriseContext.java	2007-10-25 15:06:36 UTC (rev 66439)
@@ -40,7 +40,7 @@
 /**
  * The enterprise context for stateless session beans.
  *      
- * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Öberg</a>
+ * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Oberg</a>
  * @author <a href="sebastien.alborini at m4x.org">Sebastien Alborini</a>
  * @version $Revision$
  */

Modified: trunk/server/src/main/org/jboss/ejb/plugins/AbstractInterceptor.java
===================================================================
--- trunk/server/src/main/org/jboss/ejb/plugins/AbstractInterceptor.java	2007-10-25 14:53:53 UTC (rev 66438)
+++ trunk/server/src/main/org/jboss/ejb/plugins/AbstractInterceptor.java	2007-10-25 15:06:36 UTC (rev 66439)
@@ -32,7 +32,7 @@
 /**
  * An abstract base class for container interceptors.
  *
- * @author <a href="mailto:rickard.oberg at telkel.com">Rickard �berg</a>
+ * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Oberg</a>
  * @author <a href="mailto:jason at planet57.com">Jason Dillon</a>
  * @author Scott.Stark at jboss.org
  * @version $Revision$

Modified: trunk/server/src/main/org/jboss/ejb/plugins/BMPPersistenceManager.java
===================================================================
--- trunk/server/src/main/org/jboss/ejb/plugins/BMPPersistenceManager.java	2007-10-25 14:53:53 UTC (rev 66438)
+++ trunk/server/src/main/org/jboss/ejb/plugins/BMPPersistenceManager.java	2007-10-25 15:06:36 UTC (rev 66439)
@@ -48,7 +48,7 @@
 *  Persistence manager for BMP entites.  All calls are simply deligated
 *  to the entity implementation class.
 *
-*  @author <a href="mailto:rickard.oberg at telkel.com">Rickard Öberg</a>
+*  @author <a href="mailto:rickard.oberg at telkel.com">Rickard Oberg</a>
 *  @author <a href="mailto:marc.fleury at telkel.com">Marc Fleury</a>
 *  @author <a href="mailto:andreas.schaefer at madplanet.com">Andreas Schaefer</a>
 *  @author <a href="mailto:dain at daingroup.com">Dain Sundstrom</a>

Modified: trunk/server/src/main/org/jboss/ejb/plugins/CMPFilePersistenceManager.java
===================================================================
--- trunk/server/src/main/org/jboss/ejb/plugins/CMPFilePersistenceManager.java	2007-10-25 14:53:53 UTC (rev 66438)
+++ trunk/server/src/main/org/jboss/ejb/plugins/CMPFilePersistenceManager.java	2007-10-25 15:06:36 UTC (rev 66439)
@@ -80,7 +80,7 @@
  * _ at _jmx:mbean extends="org.jboss.system.ServiceMBean"
  * 
  * @version <tt>$Revision$</tt>
- * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Öberg</a>
+ * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Oberg</a>
  * @author <a href="mailto:marc.fleury at telkel.com">Marc Fleury</a>
  * @author <a href="mailto:jason at planet57.com">Jason Dillon</a>
  * <p><b>20010801 marc fleury:</b>

Modified: trunk/server/src/main/org/jboss/ejb/plugins/EntityInstancePool.java
===================================================================
--- trunk/server/src/main/org/jboss/ejb/plugins/EntityInstancePool.java	2007-10-25 14:53:53 UTC (rev 66438)
+++ trunk/server/src/main/org/jboss/ejb/plugins/EntityInstancePool.java	2007-10-25 15:06:36 UTC (rev 66439)
@@ -28,7 +28,7 @@
  * An entity bean instance pool.
  *
  * @version <tt>$Revision$</tt>
- * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Öberg</a>
+ * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Oberg</a>
  * @author <a href="mailto:marc.fleury at telkel.com">Marc Fleury</a>
  * @author <a href="mailto:andreas.schaefer at madplanet.com">Andreas Schaefer</a>
  * @author <a href="mailto:sacha.labourey at cogito-info.ch">Sacha Labourey</a>

Modified: trunk/server/src/main/org/jboss/ejb/plugins/LogInterceptor.java
===================================================================
--- trunk/server/src/main/org/jboss/ejb/plugins/LogInterceptor.java	2007-10-25 14:53:53 UTC (rev 66438)
+++ trunk/server/src/main/org/jboss/ejb/plugins/LogInterceptor.java	2007-10-25 15:06:36 UTC (rev 66439)
@@ -46,7 +46,7 @@
  * An interceptor used to log all invocations. It also handles any
  * unexpected exceptions.
  *
- * @author <a href="mailto:rickard.oberg at telkel.com">Rickard �berg</a>
+ * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Oberg</a>
  * @author <a href="mailto:Scott.Stark at jboss.org">Scott Stark</a>
  * @author <a href="mailto:dain at daingroup.com">Dain Sundstrom</a>
  * @author <a href="mailto:osh at sparre.dk">Ole Husgaard</a>

Modified: trunk/server/src/main/org/jboss/ejb/plugins/MessageDrivenInstanceInterceptor.java
===================================================================
--- trunk/server/src/main/org/jboss/ejb/plugins/MessageDrivenInstanceInterceptor.java	2007-10-25 14:53:53 UTC (rev 66438)
+++ trunk/server/src/main/org/jboss/ejb/plugins/MessageDrivenInstanceInterceptor.java	2007-10-25 15:06:36 UTC (rev 66439)
@@ -39,7 +39,7 @@
  * JNDI environment to be set.
  *
  * @author <a href="mailto:peter.antman at tim.se">Peter Antman</a>.
- * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Öberg</a>
+ * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Oberg</a>
  * @author <a href="mailto:jason at planet57.com">Jason Dillon</a>
  * @version $Revision$
  */

Modified: trunk/server/src/main/org/jboss/ejb/plugins/MessageDrivenInstancePool.java
===================================================================
--- trunk/server/src/main/org/jboss/ejb/plugins/MessageDrivenInstancePool.java	2007-10-25 14:53:53 UTC (rev 66438)
+++ trunk/server/src/main/org/jboss/ejb/plugins/MessageDrivenInstancePool.java	2007-10-25 15:06:36 UTC (rev 66439)
@@ -28,7 +28,7 @@
  * A message driven bean instance pool.
  *
  * @version <tt>$Revision$<//t>
- * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Öberg</a>
+ * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Oberg</a>
  * @author <a href="mailto:peter.antman at tim.se">Peter Antman</a>.
  * @author <a href="mailto:andreas.schaefer at madplanet.com">Andreas Schaefer</a>
  * @author <a href="mailto:sacha.labourey at cogito-info.ch">Sacha Labourey</a>

Modified: trunk/server/src/main/org/jboss/ejb/plugins/ProxyFactoryFinderInterceptor.java
===================================================================
--- trunk/server/src/main/org/jboss/ejb/plugins/ProxyFactoryFinderInterceptor.java	2007-10-25 14:53:53 UTC (rev 66438)
+++ trunk/server/src/main/org/jboss/ejb/plugins/ProxyFactoryFinderInterceptor.java	2007-10-25 15:06:36 UTC (rev 66439)
@@ -31,7 +31,7 @@
 /** 
  * This interceptor injects the ProxyFactory into the ThreadLocal container variable
  * 
- * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Öberg</a>
+ * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Oberg</a>
  * @author <a href="mailto:Scott.Stark at jboss.org">Scott Stark</a> 
  * @version $Revision$
  */

Modified: trunk/server/src/main/org/jboss/ejb/plugins/SessionObjectInputStream.java
===================================================================
--- trunk/server/src/main/org/jboss/ejb/plugins/SessionObjectInputStream.java	2007-10-25 14:53:53 UTC (rev 66438)
+++ trunk/server/src/main/org/jboss/ejb/plugins/SessionObjectInputStream.java	2007-10-25 15:06:36 UTC (rev 66439)
@@ -38,7 +38,7 @@
  * The SessionObjectInputStream is used to deserialize stateful session beans when they are activated
  *      
  * @see org.jboss.ejb.plugins.SessionObjectOutputStream
- * @author <a href="mailto:rickard.oberg at telkel.com">Rickard berg</a>
+ * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Oberg</a>
  * @author <a href="mailto:sebastien.alborini at m4x.org">Sebastien Alborini</a>
  * @author <a href="mailto:scott.stark at jboss.org">Scott Stark</a>
  * @version $Revision$

Modified: trunk/server/src/main/org/jboss/ejb/plugins/SessionObjectOutputStream.java
===================================================================
--- trunk/server/src/main/org/jboss/ejb/plugins/SessionObjectOutputStream.java	2007-10-25 14:53:53 UTC (rev 66438)
+++ trunk/server/src/main/org/jboss/ejb/plugins/SessionObjectOutputStream.java	2007-10-25 15:06:36 UTC (rev 66439)
@@ -41,7 +41,7 @@
  * when they are passivated
  *      
  * @see org.jboss.ejb.plugins.SessionObjectInputStream
- * @author <a href="mailto:rickard.oberg at telkel.com">Rickard berg</a>
+ * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Oberg</a>
  * @author <a href="mailto:sebastien.alborini at m4x.org">Sebastien Alborini</a>
  * @version $Revision$
  */

Modified: trunk/server/src/main/org/jboss/ejb/plugins/StatefulSessionFilePersistenceManager.java
===================================================================
--- trunk/server/src/main/org/jboss/ejb/plugins/StatefulSessionFilePersistenceManager.java	2007-10-25 14:53:53 UTC (rev 66438)
+++ trunk/server/src/main/org/jboss/ejb/plugins/StatefulSessionFilePersistenceManager.java	2007-10-25 15:06:36 UTC (rev 66439)
@@ -59,7 +59,7 @@
  * Since ejb-name is not unique across deployments we generate a <em>unique-id</em> to make
  * sure that beans with the same EJB name do not collide.
  *
- * @author <a href="mailto:rickard.oberg at telkel.com">Rickard �berg</a>
+ * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Oberg</a>
  * @author <a href="mailto:marc.fleury at telkel.com">Marc Fleury</a>
  * @author <a href="mailto:sebastien.alborini at m4x.org">Sebastien Alborini</a>
  * @author <a href="mailto:jason at planet57.com">Jason Dillon</a>

Modified: trunk/server/src/main/org/jboss/ejb/plugins/StatelessSessionInstancePool.java
===================================================================
--- trunk/server/src/main/org/jboss/ejb/plugins/StatelessSessionInstancePool.java	2007-10-25 14:53:53 UTC (rev 66438)
+++ trunk/server/src/main/org/jboss/ejb/plugins/StatelessSessionInstancePool.java	2007-10-25 15:06:36 UTC (rev 66439)
@@ -28,7 +28,7 @@
  * A stateless session bean instance pool.
  *      
  * @version <tt>$Revision$</tt>
- * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Öberg</a>
+ * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Oberg</a>
  * @author <a href="mailto:andreas.schaefer at madplanet.com">Andreas Schaefer</a>
  * @author <a href="mailto:sacha.labourey at cogito-info.ch">Sacha Labourey</a>
  */

Modified: trunk/server/src/main/org/jboss/ejb/plugins/TxInterceptorCMT.java
===================================================================
--- trunk/server/src/main/org/jboss/ejb/plugins/TxInterceptorCMT.java	2007-10-25 14:53:53 UTC (rev 66438)
+++ trunk/server/src/main/org/jboss/ejb/plugins/TxInterceptorCMT.java	2007-10-25 15:06:36 UTC (rev 66439)
@@ -54,7 +54,7 @@
 /**
  *  This interceptor handles transactions for CMT beans.
  *
- *  @author <a href="mailto:rickard.oberg at telkel.com">Rickard �berg</a>
+ *  @author <a href="mailto:rickard.oberg at telkel.com">Rickard Oberg</a>
  *  @author <a href="mailto:marc.fleury at telkel.com">Marc Fleury</a>
  *  @author <a href="mailto:sebastien.alborini at m4x.org">Sebastien Alborini</a>
  *  @author <a href="mailto:akkerman at cs.nyu.edu">Anatoly Akkerman</a>

Modified: trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCAbstractQueryCommand.java
===================================================================
--- trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCAbstractQueryCommand.java	2007-10-25 14:53:53 UTC (rev 66438)
+++ trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCAbstractQueryCommand.java	2007-10-25 15:06:36 UTC (rev 66439)
@@ -57,7 +57,7 @@
  * Provides the handleResult() implementation that these all need.
  * 
  * @author <a href="mailto:dain at daingroup.com">Dain Sundstrom</a>
- * @author <a href="mailto:rickard.oberg at telkel.com">Rickard �berg</a>
+ * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Oberg</a>
  * @author <a href="mailto:marc.fleury at telkel.com">Marc Fleury</a>
  * @author <a href="mailto:shevlandj at kpi.com.au">Joe Shevland</a>
  * @author <a href="mailto:justin at j-m-f.demon.co.uk">Justin Forder</a>

Modified: trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCActivateEntityCommand.java
===================================================================
--- trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCActivateEntityCommand.java	2007-10-25 14:53:53 UTC (rev 66438)
+++ trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCActivateEntityCommand.java	2007-10-25 15:06:36 UTC (rev 66439)
@@ -31,7 +31,7 @@
  * in JDBCEntityBridge.
  *    
  * @author <a href="mailto:dain at daingroup.com">Dain Sundstrom</a>
- * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Öberg</a>
+ * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Oberg</a>
  * @author <a href="mailto:justin at j-m-f.demon.co.uk">Justin Forder</a>
  * @version $Revision$
  */

Modified: trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCCreateEntityCommand.java
===================================================================
--- trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCCreateEntityCommand.java	2007-10-25 14:53:53 UTC (rev 66438)
+++ trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCCreateEntityCommand.java	2007-10-25 15:06:36 UTC (rev 66439)
@@ -28,7 +28,7 @@
  * column is read-only this command will throw a CreateException.
  *
  * @author <a href="mailto:dain at daingroup.com">Dain Sundstrom</a>
- * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Öberg</a>
+ * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Oberg</a>
  * @author <a href="mailto:marc.fleury at telkel.com">Marc Fleury</a>
  * @author <a href="mailto:shevlandj at kpi.com.au">Joe Shevland</a>
  * @author <a href="mailto:justin at j-m-f.demon.co.uk">Justin Forder</a>

Modified: trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCDeclaredSQLQuery.java
===================================================================
--- trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCDeclaredSQLQuery.java	2007-10-25 14:53:53 UTC (rev 66438)
+++ trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCDeclaredSQLQuery.java	2007-10-25 15:06:36 UTC (rev 66439)
@@ -35,7 +35,7 @@
  * This class generates a query based on the delcared-sql xml specification.
  *
  * @author <a href="mailto:dain at daingroup.com">Dain Sundstrom</a>
- * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Öberg</a>
+ * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Oberg</a>
  * @author <a href="mailto:marc.fleury at telkel.com">Marc Fleury</a>
  * @author <a href="mailto:shevlandj at kpi.com.au">Joe Shevland</a>
  * @author <a href="mailto:justin at j-m-f.demon.co.uk">Justin Forder</a>

Modified: trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCDestroyCommand.java
===================================================================
--- trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCDestroyCommand.java	2007-10-25 14:53:53 UTC (rev 66438)
+++ trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCDestroyCommand.java	2007-10-25 15:06:36 UTC (rev 66439)
@@ -25,7 +25,7 @@
  * JDBCDestroyCommand does nothing.
  *
  * @author <a href="mailto:dain at daingroup.com">Dain Sundstrom</a>
- * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Öberg</a>
+ * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Oberg</a>
  * @author <a href="mailto:marc.fleury at telkel.com">Marc Fleury</a>
  * @author <a href="mailto:shevlandj at kpi.com.au">Joe Shevland</a>
  * @author <a href="mailto:justin at j-m-f.demon.co.uk">Justin Forder</a>

Modified: trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCFindAllQuery.java
===================================================================
--- trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCFindAllQuery.java	2007-10-25 14:53:53 UTC (rev 66438)
+++ trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCFindAllQuery.java	2007-10-25 15:06:36 UTC (rev 66439)
@@ -30,7 +30,7 @@
  * JDBCFindAllQuery automatic finder used in CMP 1.x.
  *
  * @author <a href="mailto:dain at daingroup.com">Dain Sundstrom</a>
- * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Öberg</a>
+ * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Oberg</a>
  * @author <a href="mailto:marc.fleury at telkel.com">Marc Fleury</a>
  * @author <a href="mailto:shevlandj at kpi.com.au">Joe Shevland</a>
  * @author <a href="mailto:justin at j-m-f.demon.co.uk">Justin Forder</a>

Modified: trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCFindByQuery.java
===================================================================
--- trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCFindByQuery.java	2007-10-25 14:53:53 UTC (rev 66438)
+++ trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCFindByQuery.java	2007-10-25 15:06:36 UTC (rev 66439)
@@ -32,7 +32,7 @@
  * JDBCFindByQuery automatic finder used in CMP 1.x.
  *
  * @author <a href="mailto:dain at daingroup.com">Dain Sundstrom</a>
- * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Öberg</a>
+ * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Oberg</a>
  * @author <a href="mailto:marc.fleury at telkel.com">Marc Fleury</a>
  * @author <a href="mailto:shevlandj at kpi.com.au">Joe Shevland</a>
  * @author <a href="mailto:justin at j-m-f.demon.co.uk">Justin Forder</a>

Modified: trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCFindEntitiesCommand.java
===================================================================
--- trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCFindEntitiesCommand.java	2007-10-25 14:53:53 UTC (rev 66438)
+++ trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCFindEntitiesCommand.java	2007-10-25 15:06:36 UTC (rev 66439)
@@ -32,7 +32,7 @@
  * Delegates to the specific query command.
  *
  * @author <a href="mailto:dain at daingroup.com">Dain Sundstrom</a>
- * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Öberg</a>
+ * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Oberg</a>
  * @author <a href="mailto:marc.fleury at telkel.com">Marc Fleury</a>
  * @author <a href="mailto:shevlandj at kpi.com.au">Joe Shevland</a>
  * @author <a href="mailto:justin at j-m-f.demon.co.uk">Justin Forder</a>

Modified: trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCFindEntityCommand.java
===================================================================
--- trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCFindEntityCommand.java	2007-10-25 14:53:53 UTC (rev 66438)
+++ trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCFindEntityCommand.java	2007-10-25 15:06:36 UTC (rev 66439)
@@ -35,7 +35,7 @@
  * find entities and checking that only entity is returned.
  *
  * @author <a href="mailto:dain at daingroup.com">Dain Sundstrom</a>
- * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Öberg</a>
+ * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Oberg</a>
  * @author <a href="mailto:marc.fleury at telkel.com">Marc Fleury</a>
  * @author <a href="mailto:shevlandj at kpi.com.au">Joe Shevland</a>
  * @author <a href="mailto:justin at j-m-f.demon.co.uk">Justin Forder</a>

Modified: trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCInitCommand.java
===================================================================
--- trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCInitCommand.java	2007-10-25 14:53:53 UTC (rev 66438)
+++ trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCInitCommand.java	2007-10-25 15:06:36 UTC (rev 66439)
@@ -25,7 +25,7 @@
  * JDBCInitCommand does nothing.
  *
  * @author <a href="mailto:dain at daingroup.com">Dain Sundstrom</a>
- * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Öberg</a>
+ * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Oberg</a>
  * @author <a href="mailto:marc.fleury at telkel.com">Marc Fleury</a>
  * @author <a href="mailto:shevlandj at kpi.com.au">Joe Shevland</a>
  * @author <a href="mailto:justin at j-m-f.demon.co.uk">Justin Forder</a>

Modified: trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCLoadEntityCommand.java
===================================================================
--- trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCLoadEntityCommand.java	2007-10-25 14:53:53 UTC (rev 66438)
+++ trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCLoadEntityCommand.java	2007-10-25 15:06:36 UTC (rev 66439)
@@ -44,7 +44,7 @@
  *
  * @author <a href="mailto:dain at daingroup.com">Dain Sundstrom</a>
  * @author <a href="mailto:on at ibis.odessa.ua">Oleg Nitz</a>
- * @author <a href="mailto:rickard.oberg at telkel.com">Rickard �berg</a>
+ * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Oberg</a>
  * @author <a href="mailto:marc.fleury at telkel.com">Marc Fleury</a>
  * @author <a href="mailto:shevlandj at kpi.com.au">Joe Shevland</a>
  * @author <a href="mailto:justin at j-m-f.demon.co.uk">Justin Forder</a>

Modified: trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCPassivateEntityCommand.java
===================================================================
--- trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCPassivateEntityCommand.java	2007-10-25 14:53:53 UTC (rev 66438)
+++ trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCPassivateEntityCommand.java	2007-10-25 15:06:36 UTC (rev 66439)
@@ -29,7 +29,7 @@
  * where data about the instence is keeps.
  *    
  * @author <a href="mailto:dain at daingroup.com">Dain Sundstrom</a>
- * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Öberg</a>
+ * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Oberg</a>
  * @author <a href="mailto:justin at j-m-f.demon.co.uk">Justin Forder</a>
  * @version $Revision$
  */

Modified: trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCQueryManager.java
===================================================================
--- trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCQueryManager.java	2007-10-25 14:53:53 UTC (rev 66438)
+++ trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCQueryManager.java	2007-10-25 15:06:36 UTC (rev 66439)
@@ -47,7 +47,7 @@
  * Maintains a map from a query method to query command.
  *
  * @author <a href="mailto:dain at daingroup.com">Dain Sundstrom</a>
- * @author <a href="mailto:rickard.oberg at telkel.com">Rickard �berg</a>
+ * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Oberg</a>
  * @author <a href="mailto:marc.fleury at telkel.com">Marc Fleury</a>
  * @author <a href="mailto:shevlandj at kpi.com.au">Joe Shevland</a>
  * @author <a href="mailto:justin at j-m-f.demon.co.uk">Justin Forder</a>

Modified: trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCRemoveEntityCommand.java
===================================================================
--- trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCRemoveEntityCommand.java	2007-10-25 14:53:53 UTC (rev 66438)
+++ trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCRemoveEntityCommand.java	2007-10-25 15:06:36 UTC (rev 66439)
@@ -40,7 +40,7 @@
  * JDBCRemoveEntityCommand executes a DELETE FROM table WHERE command.
  *
  * @author <a href="mailto:dain at daingroup.com">Dain Sundstrom</a>
- * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Öberg</a>
+ * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Oberg</a>
  * @author <a href="mailto:marc.fleury at telkel.com">Marc Fleury</a>
  * @author <a href="mailto:shevlandj at kpi.com.au">Joe Shevland</a>
  * @author <a href="mailto:justin at j-m-f.demon.co.uk">Justin Forder</a>

Modified: trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCStartCommand.java
===================================================================
--- trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCStartCommand.java	2007-10-25 14:53:53 UTC (rev 66438)
+++ trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCStartCommand.java	2007-10-25 15:06:36 UTC (rev 66439)
@@ -49,7 +49,7 @@
  * JDBCStartCommand creates the table if specified in xml.
  *
  * @author <a href="mailto:dain at daingroup.com">Dain Sundstrom</a>
- * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Öberg</a>
+ * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Oberg</a>
  * @author <a href="mailto:marc.fleury at telkel.com">Marc Fleury</a>
  * @author <a href="mailto:shevlandj at kpi.com.au">Joe Shevland</a>
  * @author <a href="mailto:justin at j-m-f.demon.co.uk">Justin Forder</a>

Modified: trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCStopCommand.java
===================================================================
--- trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCStopCommand.java	2007-10-25 14:53:53 UTC (rev 66438)
+++ trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCStopCommand.java	2007-10-25 15:06:36 UTC (rev 66439)
@@ -41,7 +41,7 @@
  * JDBCStopCommand drops the table for this entity if specified in the xml.
  *
  * @author <a href="mailto:dain at daingroup.com">Dain Sundstrom</a>
- * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Öberg</a>
+ * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Oberg</a>
  * @author <a href="mailto:justin at j-m-f.demon.co.uk">Justin Forder</a>
  * @author <a href="mailto:alex at jboss.org">Alexey Loubyansky</a>
  * @version $Revision$

Modified: trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCStoreEntityCommand.java
===================================================================
--- trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCStoreEntityCommand.java	2007-10-25 14:53:53 UTC (rev 66438)
+++ trunk/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/JDBCStoreEntityCommand.java	2007-10-25 15:06:36 UTC (rev 66439)
@@ -37,7 +37,7 @@
  * Note: read-only fields are never considered dirty.
  *
  * @author <a href="mailto:dain at daingroup.com">Dain Sundstrom</a>
- * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Öberg</a>
+ * @author <a href="mailto:rickard.oberg at telkel.com">Rickard Oberg</a>
  * @author <a href="mailto:marc.fleury at telkel.com">Marc Fleury</a>
  * @author <a href="mailto:shevlandj at kpi.com.au">Joe Shevland</a>
  * @author <a href="mailto:justin at j-m-f.demon.co.uk">Justin Forder</a>

Modified: trunk/server/src/main/org/jboss/jmx/adaptor/rmi/RMIAdaptor.java
===================================================================
--- trunk/server/src/main/org/jboss/jmx/adaptor/rmi/RMIAdaptor.java	2007-10-25 14:53:53 UTC (rev 66438)
+++ trunk/server/src/main/org/jboss/jmx/adaptor/rmi/RMIAdaptor.java	2007-10-25 15:06:36 UTC (rev 66439)
@@ -36,8 +36,8 @@
  * has an additional RemoteException.
  *
  * @version <tt>$Revision$</tt>
- * @author  <a href="mailto:rickard.oberg at telkel.com">Rickard Öberg</a>
- * @author  <A href="mailto:andreas at jboss.org">Andreas &quot;Mad&quot; Schaefer</A>
+ * @author  <a href="mailto:rickard.oberg at telkel.com">Rickard Oberg</a>
+ * @author  <A href="mailto:andreas at jboss.org">Andreas Schaefer</A>
  * @author  <a href="mailto:jason at planet57.com">Jason Dillon</a>
  */
 public interface RMIAdaptor

Modified: trunk/server/src/main/org/jboss/proxy/ejb/EJBMetaDataImpl.java
===================================================================
--- trunk/server/src/main/org/jboss/proxy/ejb/EJBMetaDataImpl.java	2007-10-25 14:53:53 UTC (rev 66438)
+++ trunk/server/src/main/org/jboss/proxy/ejb/EJBMetaDataImpl.java	2007-10-25 15:06:36 UTC (rev 66439)
@@ -33,7 +33,7 @@
  * An implementation of the EJBMetaData interface which allows a
  * client to obtain the enterprise Bean's meta-data information.
  *
- * @author  Rickard Öberg (rickard.oberg at telkel.com)
+ * @author  Rickard Oberg (rickard.oberg at telkel.com)
  * @author  <a href="mailto:marc.fleury at telkel.com">Marc Fleury</a>
  * @author  <a href="mailto:jason at planet57.com">Jason Dillon</a>
  * @version $Revision$




More information about the jboss-cvs-commits mailing list