You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by jl...@apache.org on 2008/04/03 11:59:13 UTC

svn commit: r644249 - in /openejb/trunk/openejb3: ./ container/openejb-core/src/main/java/org/apache/openejb/core/transaction/ server/openejb-axis/src/main/java/org/apache/openejb/server/axis/assembler/ server/openejb-client/src/main/java/org/apache/op...

Author: jlaskowski
Date: Thu Apr  3 02:59:12 2008
New Revision: 644249

URL: http://svn.apache.org/viewvc?rev=644249&view=rev
Log:
Incorrect characters that broke mvn site removed

Modified:
    openejb/trunk/openejb3/container/openejb-core/src/main/java/org/apache/openejb/core/transaction/TxNever.java
    openejb/trunk/openejb3/container/openejb-core/src/main/java/org/apache/openejb/core/transaction/TxRequiresNew.java
    openejb/trunk/openejb3/container/openejb-core/src/main/java/org/apache/openejb/core/transaction/TxSupports.java
    openejb/trunk/openejb3/pom.xml
    openejb/trunk/openejb3/server/openejb-axis/src/main/java/org/apache/openejb/server/axis/assembler/CommonsSchemaInfoBuilder.java
    openejb/trunk/openejb3/server/openejb-client/src/main/java/org/apache/openejb/client/EJBObjectHandler.java

Modified: openejb/trunk/openejb3/container/openejb-core/src/main/java/org/apache/openejb/core/transaction/TxNever.java
URL: http://svn.apache.org/viewvc/openejb/trunk/openejb3/container/openejb-core/src/main/java/org/apache/openejb/core/transaction/TxNever.java?rev=644249&r1=644248&r2=644249&view=diff
==============================================================================
--- openejb/trunk/openejb3/container/openejb-core/src/main/java/org/apache/openejb/core/transaction/TxNever.java (original)
+++ openejb/trunk/openejb3/container/openejb-core/src/main/java/org/apache/openejb/core/transaction/TxNever.java Thu Apr  3 02:59:12 2008
@@ -28,13 +28,14 @@
  * is set to Never without a transaction context defined by the EJB spec.
  *
  * The client is required to call without a transaction context.
- *
- * ¥ If the client calls with a transaction context, the Container throws the
- *   java.rmi.RemoteException exception if the client is a remote client, or
- *   the javax.ejb.EJBException if the client is a local client.
- * ¥ If the client calls without a transaction context, the Container performs
- *   the same steps as described in the NotSupported case.
- *
+ * 
+ * If the client calls with a transaction context, the Container throws:<ul>
+ * <li>java.rmi.RemoteException exception if the client is a remote client</li>
+ * <li>javax.ejb.EJBException if the client is a local client</li>
+ * </ul>
+ * 
+ * If the client calls without a transaction context, the Container performs
+ * the same steps as described in the NotSupported case.
  */
 public class TxNever extends TransactionPolicy {
 

Modified: openejb/trunk/openejb3/container/openejb-core/src/main/java/org/apache/openejb/core/transaction/TxRequiresNew.java
URL: http://svn.apache.org/viewvc/openejb/trunk/openejb3/container/openejb-core/src/main/java/org/apache/openejb/core/transaction/TxRequiresNew.java?rev=644249&r1=644248&r2=644249&view=diff
==============================================================================
--- openejb/trunk/openejb3/container/openejb-core/src/main/java/org/apache/openejb/core/transaction/TxRequiresNew.java (original)
+++ openejb/trunk/openejb3/container/openejb-core/src/main/java/org/apache/openejb/core/transaction/TxRequiresNew.java Thu Apr  3 02:59:12 2008
@@ -27,7 +27,7 @@
  * The Container must invoke an enterprise Bean method whose transaction
  * attribute is set to RequiresNew with a new transaction context.
  *
- * If the client invokes the enterprise BeanÕs method while the client is not
+ * If the client invokes the enterprise Bean's method while the client is not
  * associated with a transaction context, the container automatically starts a
  * new transaction before delegating a method call to the enterprise Bean
  * business method. The Container automatically enlists all the resource

Modified: openejb/trunk/openejb3/container/openejb-core/src/main/java/org/apache/openejb/core/transaction/TxSupports.java
URL: http://svn.apache.org/viewvc/openejb/trunk/openejb3/container/openejb-core/src/main/java/org/apache/openejb/core/transaction/TxSupports.java?rev=644249&r1=644248&r2=644249&view=diff
==============================================================================
--- openejb/trunk/openejb3/container/openejb-core/src/main/java/org/apache/openejb/core/transaction/TxSupports.java (original)
+++ openejb/trunk/openejb3/container/openejb-core/src/main/java/org/apache/openejb/core/transaction/TxSupports.java Thu Apr  3 02:59:12 2008
@@ -25,11 +25,11 @@
  * The Container invokes an enterprise Bean method whose transaction attribute
  * is set to Supports as follows.
  *
- * ¥ If the client calls with a transaction context, the Container performs
- *   the same steps as described in the Required case.
- *
- * ¥ If the client calls without a transaction context, the Container performs
- *   the same steps as described in the NotSupported case.
+ * If the client calls with a transaction context, the Container performs
+ * the same steps as described in the Required case.
+ * 
+ * If the client calls without a transaction context, the Container performs
+ * the same steps as described in the NotSupported case.
  *
  * The Supports transaction attribute must be used with caution. This is
  * because of the different transactional semantics provided by the two

Modified: openejb/trunk/openejb3/pom.xml
URL: http://svn.apache.org/viewvc/openejb/trunk/openejb3/pom.xml?rev=644249&r1=644248&r2=644249&view=diff
==============================================================================
--- openejb/trunk/openejb3/pom.xml (original)
+++ openejb/trunk/openejb3/pom.xml Thu Apr  3 02:59:12 2008
@@ -1,24 +1,24 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-
-    Licensed to the Apache Software Foundation (ASF) under one or more
-    contributor license agreements.  See the NOTICE file distributed with
-    this work for additional information regarding copyright ownership.
-    The ASF licenses this file to You under the Apache License, Version 2.0
-    (the "License"); you may not use this file except in compliance with
-    the License.  You may obtain a copy of the License at
-
-       http://www.apache.org/licenses/LICENSE-2.0
-
-    Unless required by applicable law or agreed to in writing, software
-    distributed under the License is distributed on an "AS IS" BASIS,
-    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-    See the License for the specific language governing permissions and
-    limitations under the License.
--->
-
-<!-- $Rev$ $Date$ -->
-
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+
+    Licensed to the Apache Software Foundation (ASF) under one or more
+    contributor license agreements.  See the NOTICE file distributed with
+    this work for additional information regarding copyright ownership.
+    The ASF licenses this file to You under the Apache License, Version 2.0
+    (the "License"); you may not use this file except in compliance with
+    the License.  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License.
+-->
+
+<!-- $Rev$ $Date$ -->
+
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
 
   <modelVersion>4.0.0</modelVersion>
@@ -322,14 +322,14 @@
     </profile>
     <profile>
       <id>rat</id>
-      <modules>
-        <module>deps</module>
-        <module>itests</module>
-        <module>container</module>
-        <module>server</module>
-        <module>examples</module>
-        <module>assembly</module>
-      </modules>
+      <modules>
+        <module>deps</module>
+        <module>itests</module>
+        <module>container</module>
+        <module>server</module>
+        <module>examples</module>
+        <module>assembly</module>
+      </modules>
       <build>
         <plugins>
           <plugin>
@@ -354,7 +354,7 @@
 
                 <!-- left around after some unit tests -->
                 <exclude>**/derby.log</exclude>
-                <exclude>**/hsqldb.log</exclude>
+                <exclude>**/hsqldb.log</exclude>
 
                 <!-- IDEA files -->
                 <exclude>**/*.iml</exclude>

Modified: openejb/trunk/openejb3/server/openejb-axis/src/main/java/org/apache/openejb/server/axis/assembler/CommonsSchemaInfoBuilder.java
URL: http://svn.apache.org/viewvc/openejb/trunk/openejb3/server/openejb-axis/src/main/java/org/apache/openejb/server/axis/assembler/CommonsSchemaInfoBuilder.java?rev=644249&r1=644248&r2=644249&view=diff
==============================================================================
--- openejb/trunk/openejb3/server/openejb-axis/src/main/java/org/apache/openejb/server/axis/assembler/CommonsSchemaInfoBuilder.java (original)
+++ openejb/trunk/openejb3/server/openejb-axis/src/main/java/org/apache/openejb/server/axis/assembler/CommonsSchemaInfoBuilder.java Thu Apr  3 02:59:12 2008
@@ -177,7 +177,7 @@
             } else {
                 // Anonymous type, so we need to declare it
 
-                // Rule 2.b: Anonymous element absolute name ÒT>NÓ
+                // Rule 2.b: Anonymous element absolute name "T>N"
                 String anonymoustName = enclosingType.qname.getLocalPart() + ">" + elementQName.getLocalPart();
                 QName anonymousQName = new QName(elementNamespace, anonymoustName);
 

Modified: openejb/trunk/openejb3/server/openejb-client/src/main/java/org/apache/openejb/client/EJBObjectHandler.java
URL: http://svn.apache.org/viewvc/openejb/trunk/openejb3/server/openejb-client/src/main/java/org/apache/openejb/client/EJBObjectHandler.java?rev=644249&r1=644248&r2=644249&view=diff
==============================================================================
--- openejb/trunk/openejb3/server/openejb-client/src/main/java/org/apache/openejb/client/EJBObjectHandler.java (original)
+++ openejb/trunk/openejb3/server/openejb-client/src/main/java/org/apache/openejb/client/EJBObjectHandler.java Thu Apr  3 02:59:12 2008
@@ -91,7 +91,7 @@
         try {
             List<Class> interfaces = new ArrayList<Class>();
             // Interface class must be listed first, before EJBObjectProxy,
-            // otherwise the proxy code will selectï the openejb system class
+            // otherwise the proxy code will select the openejb system class
             // loader for proxy creation instead of the application class loader
             if (ejb.remoteClass != null) {
                 interfaces.add(ejb.remoteClass);