You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by db...@apache.org on 2008/01/08 23:26:05 UTC

svn commit: r610200 - in /openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test: stateful/ stateless/

Author: dblevins
Date: Tue Jan  8 14:26:03 2008
New Revision: 610200

URL: http://svn.apache.org/viewvc?rev=610200&view=rev
Log:
Deleting illegal non UTF-8 characters

Modified:
    openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateful/StatefulBeanTxTests.java
    openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateful/StatefulEjbHomeTests.java
    openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateful/StatefulEjbMetaDataTests.java
    openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateful/StatefulEjbObjectTests.java
    openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateful/StatefulPojoEjbHomeTests.java
    openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateful/StatefulPojoEjbLocalHomeTests.java
    openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateful/StatefulPojoEjbLocalObjectTests.java
    openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateless/StatelessBeanTxTests.java
    openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateless/StatelessEjbMetaDataTests.java
    openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateless/StatelessEjbObjectTests.java
    openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateless/StatelessHandleTests.java
    openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateless/StatelessPojoEjbHomeTests.java
    openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateless/StatelessPojoEjbLocalHomeTests.java
    openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateless/StatelessPojoEjbLocalObjectTests.java
    openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateless/StatelessPojoEjbMetaDataTests.java

Modified: openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateful/StatefulBeanTxTests.java
URL: http://svn.apache.org/viewvc/openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateful/StatefulBeanTxTests.java?rev=610200&r1=610199&r2=610200&view=diff
==============================================================================
--- openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateful/StatefulBeanTxTests.java (original)
+++ openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateful/StatefulBeanTxTests.java Tue Jan  8 14:26:03 2008
@@ -88,7 +88,7 @@
      * <B>11.6.1 Bean-managed transaction demarcation</B>
      * <P>
      * The Container must make the javax.transaction.UserTransaction interface available to
-     * the enterprise bean’s business method via the javax.ejb.EJBContext interface and under the
+     * the enterprise bean's business method via the javax.ejb.EJBContext interface and under the
      * environment entry java:comp/UserTransaction. When an instance uses the javax.trans-action.
      * UserTransaction interface to demarcate a transaction, the Container must enlist all the
      * resource managers used by the instance between the begin() and commit()—or rollback()—
@@ -115,7 +115,7 @@
      * <B>11.6.1 Bean-managed transaction demarcation</B>
      * <P>
      * The Container must make the javax.transaction.UserTransaction interface available to
-     * the enterprise bean’s business method via the javax.ejb.EJBContext interface and under the
+     * the enterprise bean's business method via the javax.ejb.EJBContext interface and under the
      * environment entry java:comp/UserTransaction. When an instance uses the javax.trans-action.
      * UserTransaction interface to demarcate a transaction, the Container must enlist all the
      * resource managers used by the instance between the begin() and commit()—or rollback()—
@@ -291,11 +291,11 @@
      * </P>
      * <PRE>
      * =========================================================================
-     * Container’s actions for methods of beans with bean-managed transaction
+     * Container's actions for methods of beans with bean-managed transaction
      * =========================================================================
      *
      *            |      IF     |          AND             |          THEN
-     *  scenario  |   Client’s  | Transaction currently    | Transaction associated
+     *  scenario  |   Client's  | Transaction currently    | Transaction associated
      *            | transaction | associated with instance | with the method is
      * ___________|_____________|__________________________|________________________
      *            |             |                          |
@@ -340,11 +340,11 @@
      * </P>
      * <PRE>
      * =========================================================================
-     * Container’s actions for methods of beans with bean-managed transaction
+     * Container's actions for methods of beans with bean-managed transaction
      * =========================================================================
      *
      *            |      IF     |          AND             |          THEN
-     *  scenario  |   Client’s  | Transaction currently    | Transaction associated
+     *  scenario  |   Client's  | Transaction currently    | Transaction associated
      *            | transaction | associated with instance | with the method is
      * ___________|_____________|__________________________|________________________
      *            |             |                          |
@@ -362,8 +362,8 @@
      * </PRE>
      * <P>
      * If the client is associated with a transaction T1, and the instance is not associated with a transaction,
-     * the container suspends the client’s transaction association and invokes the method with
-     * an unspecified transaction context. The container resumes the client’s transaction association
+     * the container suspends the client's transaction association and invokes the method with
+     * an unspecified transaction context. The container resumes the client's transaction association
      * (T1) when the method completes.
      * </P>
      * <P>--------------------------------------------------------</P>
@@ -389,11 +389,11 @@
      * </P>
      * <PRE>
      * =========================================================================
-     * Container’s actions for methods of beans with bean-managed transaction
+     * Container's actions for methods of beans with bean-managed transaction
      * =========================================================================
      *
      *            |      IF     |          AND             |          THEN
-     *  scenario  |   Client’s  | Transaction currently    | Transaction associated
+     *  scenario  |   Client's  | Transaction currently    | Transaction associated
      *            | transaction | associated with instance | with the method is
      * ___________|_____________|__________________________|________________________
      *            |             |                          |
@@ -437,11 +437,11 @@
      * </P>
      * <PRE>
      * =========================================================================
-     * Container’s actions for methods of beans with bean-managed transaction
+     * Container's actions for methods of beans with bean-managed transaction
      * =========================================================================
      *
      *            |      IF     |          AND             |          THEN
-     *  scenario  |   Client’s  | Transaction currently    | Transaction associated
+     *  scenario  |   Client's  | Transaction currently    | Transaction associated
      *            | transaction | associated with instance | with the method is
      * ___________|_____________|__________________________|________________________
      *            |             |                          |
@@ -459,9 +459,9 @@
      * </PRE>
      * <P>
      * If the client is associated with a transaction T1, and the instance is already associated with a
-     * transaction T2, the container suspends the client’s transaction association and invokes the
+     * transaction T2, the container suspends the client's transaction association and invokes the
      * method with the transaction context that is associated with the instance (T2). The container
-     * resumes the client’s transaction association (T1) when the method completes. This case can
+     * resumes the client's transaction association (T1) when the method completes. This case can
      * never happen for a stateless Session Bean.
      * </P>
      * <P>--------------------------------------------------------</P>

Modified: openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateful/StatefulEjbHomeTests.java
URL: http://svn.apache.org/viewvc/openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateful/StatefulEjbHomeTests.java?rev=610200&r1=610199&r2=610200&view=diff
==============================================================================
--- openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateful/StatefulEjbHomeTests.java (original)
+++ openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateful/StatefulEjbHomeTests.java Tue Jan  8 14:26:03 2008
@@ -73,7 +73,7 @@
      *
      * Session objects are intended to be private resources used only by the
      * client that created them. For this reason, session objects, from the
-     * client’s perspective, appear anonymous. In contrast to entity objects,
+     * client's perspective, appear anonymous. In contrast to entity objects,
      * which expose their identity as a primary key, session objects hide their
      * identity. As a result, the EJBObject.getPrimaryKey() and
      * EJBHome.remove(Object primaryKey) methods result in a java.rmi.RemoteException

Modified: openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateful/StatefulEjbMetaDataTests.java
URL: http://svn.apache.org/viewvc/openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateful/StatefulEjbMetaDataTests.java?rev=610200&r1=610199&r2=610200&view=diff
==============================================================================
--- openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateful/StatefulEjbMetaDataTests.java (original)
+++ openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateful/StatefulEjbMetaDataTests.java Tue Jan  8 14:26:03 2008
@@ -64,7 +64,7 @@
      *
      * Session objects are intended to be private resources used only by the
      * client that created them. For this reason, session objects, from the
-     * client’s perspective, appear anonymous. In contrast to entity objects,
+     * client's perspective, appear anonymous. In contrast to entity objects,
      * which expose their identity as a primary key, session objects hide their
      * identity. As a result, the EJBObject.getPrimaryKey() and
      * EJBHome.remove(Object primaryKey) methods result in a java.rmi.RemoteException

Modified: openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateful/StatefulEjbObjectTests.java
URL: http://svn.apache.org/viewvc/openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateful/StatefulEjbObjectTests.java?rev=610200&r1=610199&r2=610200&view=diff
==============================================================================
--- openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateful/StatefulEjbObjectTests.java (original)
+++ openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateful/StatefulEjbObjectTests.java Tue Jan  8 14:26:03 2008
@@ -78,7 +78,7 @@
      *
      * Session objects are intended to be private resources used only by the
      * client that created them. For this reason, session objects, from the
-     * client’s perspective, appear anonymous. In contrast to entity objects,
+     * client's perspective, appear anonymous. In contrast to entity objects,
      * which expose their identity as a primary key, session objects hide their
      * identity. As a result, the EJBObject.getPrimaryKey() and
      * EJBHome.remove(Object primaryKey) methods result in a java.rmi.RemoteException

Modified: openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateful/StatefulPojoEjbHomeTests.java
URL: http://svn.apache.org/viewvc/openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateful/StatefulPojoEjbHomeTests.java?rev=610200&r1=610199&r2=610200&view=diff
==============================================================================
--- openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateful/StatefulPojoEjbHomeTests.java (original)
+++ openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateful/StatefulPojoEjbHomeTests.java Tue Jan  8 14:26:03 2008
@@ -73,7 +73,7 @@
      *
      * Session objects are intended to be private resources used only by the
      * client that created them. For this reason, session objects, from the
-     * client’s perspective, appear anonymous. In contrast to entity objects,
+     * client's perspective, appear anonymous. In contrast to entity objects,
      * which expose their identity as a primary key, session objects hide their
      * identity. As a result, the EJBObject.getPrimaryKey() and
      * EJBHome.remove(Object primaryKey) methods result in a java.rmi.RemoteException

Modified: openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateful/StatefulPojoEjbLocalHomeTests.java
URL: http://svn.apache.org/viewvc/openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateful/StatefulPojoEjbLocalHomeTests.java?rev=610200&r1=610199&r2=610200&view=diff
==============================================================================
--- openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateful/StatefulPojoEjbLocalHomeTests.java (original)
+++ openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateful/StatefulPojoEjbLocalHomeTests.java Tue Jan  8 14:26:03 2008
@@ -53,7 +53,7 @@
      *
      * Session objects are intended to be private resources used only by the
      * client that created them. For this reason, session objects, from the
-     * client’s perspective, appear anonymous. In contrast to entity objects,
+     * client's perspective, appear anonymous. In contrast to entity objects,
      * which expose their identity as a primary key, session objects hide their
      * identity. As a result, the EJBObject.getPrimaryKey() and
      * EJBHome.remove(Object primaryKey) methods result in a java.rmi.RemoteException

Modified: openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateful/StatefulPojoEjbLocalObjectTests.java
URL: http://svn.apache.org/viewvc/openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateful/StatefulPojoEjbLocalObjectTests.java?rev=610200&r1=610199&r2=610200&view=diff
==============================================================================
--- openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateful/StatefulPojoEjbLocalObjectTests.java (original)
+++ openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateful/StatefulPojoEjbLocalObjectTests.java Tue Jan  8 14:26:03 2008
@@ -64,7 +64,7 @@
      *
      * Session objects are intended to be private resources used only by the
      * client that created them. For this reason, session objects, from the
-     * client’s perspective, appear anonymous. In contrast to entity objects,
+     * client's perspective, appear anonymous. In contrast to entity objects,
      * which expose their identity as a primary key, session objects hide their
      * identity. As a result, the EJBLocalObject.getPrimaryKey() method results in a
      * javax.ejb.EJBException, and EJBLocalHome.remove(Object primaryKey) method results

Modified: openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateless/StatelessBeanTxTests.java
URL: http://svn.apache.org/viewvc/openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateless/StatelessBeanTxTests.java?rev=610200&r1=610199&r2=610200&view=diff
==============================================================================
--- openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateless/StatelessBeanTxTests.java (original)
+++ openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateless/StatelessBeanTxTests.java Tue Jan  8 14:26:03 2008
@@ -88,7 +88,7 @@
      * <B>11.6.1 Bean-managed transaction demarcation</B>
      * <P>
      * The Container must make the javax.transaction.UserTransaction interface available to
-     * the enterprise bean’s business method via the javax.ejb.EJBContext interface and under the
+     * the enterprise bean's business method via the javax.ejb.EJBContext interface and under the
      * environment entry java:comp/UserTransaction. When an instance uses the javax.trans-action.
      * UserTransaction interface to demarcate a transaction, the Container must enlist all the
      * resource managers used by the instance between the begin() and commit()—or rollback()—
@@ -115,7 +115,7 @@
      * <B>11.6.1 Bean-managed transaction demarcation</B>
      * <P>
      * The Container must make the javax.transaction.UserTransaction interface available to
-     * the enterprise bean’s business method via the javax.ejb.EJBContext interface and under the
+     * the enterprise bean's business method via the javax.ejb.EJBContext interface and under the
      * environment entry java:comp/UserTransaction. When an instance uses the javax.trans-action.
      * UserTransaction interface to demarcate a transaction, the Container must enlist all the
      * resource managers used by the instance between the begin() and commit()—or rollback()—
@@ -295,11 +295,11 @@
      * </P>
      * <PRE>
      * =========================================================================
-     * Container’s actions for methods of beans with bean-managed transaction
+     * Container's actions for methods of beans with bean-managed transaction
      * =========================================================================
      *
      *            |      IF     |          AND             |          THEN
-     *  scenario  |   Client’s  | Transaction currently    | Transaction associated
+     *  scenario  |   Client's  | Transaction currently    | Transaction associated
      *            | transaction | associated with instance | with the method is
      * ___________|_____________|__________________________|________________________
      *            |             |                          |
@@ -344,11 +344,11 @@
      * </P>
      * <PRE>
      * =========================================================================
-     * Container’s actions for methods of beans with bean-managed transaction
+     * Container's actions for methods of beans with bean-managed transaction
      * =========================================================================
      *
      *            |      IF     |          AND             |          THEN
-     *  scenario  |   Client’s  | Transaction currently    | Transaction associated
+     *  scenario  |   Client's  | Transaction currently    | Transaction associated
      *            | transaction | associated with instance | with the method is
      * ___________|_____________|__________________________|________________________
      *            |             |                          |
@@ -366,8 +366,8 @@
      * </PRE>
      * <P>
      * If the client is associated with a transaction T1, and the instance is not associated with a transaction,
-     * the container suspends the client’s transaction association and invokes the method with
-     * an unspecified transaction context. The container resumes the client’s ntransaction association
+     * the container suspends the client's transaction association and invokes the method with
+     * an unspecified transaction context. The container resumes the client's ntransaction association
      * (T1) when the method completes.
      * </P>
      * <P>--------------------------------------------------------</P>

Modified: openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateless/StatelessEjbMetaDataTests.java
URL: http://svn.apache.org/viewvc/openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateless/StatelessEjbMetaDataTests.java?rev=610200&r1=610199&r2=610200&view=diff
==============================================================================
--- openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateless/StatelessEjbMetaDataTests.java (original)
+++ openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateless/StatelessEjbMetaDataTests.java Tue Jan  8 14:26:03 2008
@@ -64,7 +64,7 @@
      *
      * Session objects are intended to be private resources used only by the
      * client that created them. For this reason, session objects, from the
-     * client’s perspective, appear anonymous. In contrast to entity objects,
+     * client's perspective, appear anonymous. In contrast to entity objects,
      * which expose their identity as a primary key, session objects hide their
      * identity. As a result, the EJBObject.getPrimaryKey() and
      * EJBHome.remove(Object primaryKey) methods result in a java.rmi.RemoteException

Modified: openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateless/StatelessEjbObjectTests.java
URL: http://svn.apache.org/viewvc/openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateless/StatelessEjbObjectTests.java?rev=610200&r1=610199&r2=610200&view=diff
==============================================================================
--- openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateless/StatelessEjbObjectTests.java (original)
+++ openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateless/StatelessEjbObjectTests.java Tue Jan  8 14:26:03 2008
@@ -83,7 +83,7 @@
      *
      * Session objects are intended to be private resources used only by the
      * client that created them. For this reason, session objects, from the
-     * client’s perspective, appear anonymous. In contrast to entity objects,
+     * client's perspective, appear anonymous. In contrast to entity objects,
      * which expose their identity as a primary key, session objects hide their
      * identity. As a result, the EJBObject.getPrimaryKey() and
      * EJBHome.remove(Object primaryKey) methods result in a java.rmi.RemoteException

Modified: openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateless/StatelessHandleTests.java
URL: http://svn.apache.org/viewvc/openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateless/StatelessHandleTests.java?rev=610200&r1=610199&r2=610200&view=diff
==============================================================================
--- openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateless/StatelessHandleTests.java (original)
+++ openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateless/StatelessHandleTests.java Tue Jan  8 14:26:03 2008
@@ -64,7 +64,7 @@
     }
 
     /**
-     * <B>5.6 Client view of session object’s life cycle</B>
+     * <B>5.6 Client view of session object's life cycle</B>
      * <P>
      * ....It is invalid to reference a session object that does
      * not exist. Attempted invocations on a session object

Modified: openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateless/StatelessPojoEjbHomeTests.java
URL: http://svn.apache.org/viewvc/openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateless/StatelessPojoEjbHomeTests.java?rev=610200&r1=610199&r2=610200&view=diff
==============================================================================
--- openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateless/StatelessPojoEjbHomeTests.java (original)
+++ openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateless/StatelessPojoEjbHomeTests.java Tue Jan  8 14:26:03 2008
@@ -73,7 +73,7 @@
      *
      * Session objects are intended to be private resources used only by the
      * client that created them. For this reason, session objects, from the
-     * client’s perspective, appear anonymous. In contrast to entity objects,
+     * client's perspective, appear anonymous. In contrast to entity objects,
      * which expose their identity as a primary key, session objects hide their
      * identity. As a result, the EJBObject.getPrimaryKey() and
      * EJBHome.remove(Object primaryKey) methods result in a java.rmi.RemoteException

Modified: openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateless/StatelessPojoEjbLocalHomeTests.java
URL: http://svn.apache.org/viewvc/openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateless/StatelessPojoEjbLocalHomeTests.java?rev=610200&r1=610199&r2=610200&view=diff
==============================================================================
--- openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateless/StatelessPojoEjbLocalHomeTests.java (original)
+++ openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateless/StatelessPojoEjbLocalHomeTests.java Tue Jan  8 14:26:03 2008
@@ -55,7 +55,7 @@
      *
      * Session objects are intended to be private resources used only by the
      * client that created them. For this reason, session objects, from the
-     * client’s perspective, appear anonymous. In contrast to entity objects,
+     * client's perspective, appear anonymous. In contrast to entity objects,
      * which expose their identity as a primary key, session objects hide their
      * identity. As a result, the EJBObject.getPrimaryKey() and
      * EJBHome.remove(Object primaryKey) methods result in a java.rmi.RemoteException

Modified: openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateless/StatelessPojoEjbLocalObjectTests.java
URL: http://svn.apache.org/viewvc/openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateless/StatelessPojoEjbLocalObjectTests.java?rev=610200&r1=610199&r2=610200&view=diff
==============================================================================
--- openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateless/StatelessPojoEjbLocalObjectTests.java (original)
+++ openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateless/StatelessPojoEjbLocalObjectTests.java Tue Jan  8 14:26:03 2008
@@ -68,7 +68,7 @@
      * <p/>
      * Session objects are intended to be private resources used only by the
      * client that created them. For this reason, session objects, from the
-     * client’s perspective, appear anonymous. In contrast to entity objects,
+     * client's perspective, appear anonymous. In contrast to entity objects,
      * which expose their identity as a primary key, session objects hide their
      * identity. As a result, the EJBLocalObject.getPrimaryKey() method results in a
      * javax.ejb.EJBException, and EJBLocalHome.remove(Object primaryKey) method results

Modified: openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateless/StatelessPojoEjbMetaDataTests.java
URL: http://svn.apache.org/viewvc/openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateless/StatelessPojoEjbMetaDataTests.java?rev=610200&r1=610199&r2=610200&view=diff
==============================================================================
--- openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateless/StatelessPojoEjbMetaDataTests.java (original)
+++ openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateless/StatelessPojoEjbMetaDataTests.java Tue Jan  8 14:26:03 2008
@@ -58,7 +58,7 @@
      *
      * Session objects are intended to be private resources used only by the
      * client that created them. For this reason, session objects, from the
-     * client’s perspective, appear anonymous. In contrast to entity objects,
+     * client's perspective, appear anonymous. In contrast to entity objects,
      * which expose their identity as a primary key, session objects hide their
      * identity. As a result, the EJBObject.getPrimaryKey() and
      * EJBHome.remove(Object primaryKey) methods result in a java.rmi.RemoteException