Author: jstrachan
Date: Fri Apr 20 02:14:07 2007
New Revision: 530708

URL: http://svn.apache.org/viewvc?view=rev&rev=530708
Log:
updated javadoc links

Added:
    
activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/component/mock/package.html
   (with props)
    
activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/component/pojo/timer/package.html
   (with props)
Modified:
    
activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/component/direct/package.html
    
activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/component/mock/MockEndpoint.java
    
activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/component/pojo/package.html
    
activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/component/queue/package.html

Modified: 
activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/component/direct/package.html
URL: 
http://svn.apache.org/viewvc/activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/component/direct/package.html?view=diff&rev=530708&r1=530707&r2=530708
==============================================================================
--- 
activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/component/direct/package.html
 (original)
+++ 
activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/component/direct/package.html
 Fri Apr 20 02:14:07 2007
@@ -19,8 +19,8 @@
 </head>
 <body>
 
-A direct endpoint synchronously invokes all the consumers when a producer 
sends an exchange to the endpoint.  This also known
-as strait through processing. 
+The <a href="http://activemq.apache.org/camel/direct.html";>Direct 
Component</a> which synchronously invokes
+all the consumers when a producer sends an exchange to the endpoint.  This 
also known as <i>strait through processing</i>. 
 
 </body>
 </html>

Modified: 
activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/component/mock/MockEndpoint.java
URL: 
http://svn.apache.org/viewvc/activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/component/mock/MockEndpoint.java?view=diff&rev=530708&r1=530707&r2=530708
==============================================================================
--- 
activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/component/mock/MockEndpoint.java
 (original)
+++ 
activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/component/mock/MockEndpoint.java
 Fri Apr 20 02:14:07 2007
@@ -134,6 +134,13 @@
         for (Runnable test : tests) {
             test.run();
         }
+
+        for (Throwable failure : failures) {
+           if (failure != null) {
+               log.error("Caught: " + failure, failure);
+               throw new AssertionError("Failed due to caught exception: " + 
failure);
+           }
+        }
     }
 
     /**

Added: 
activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/component/mock/package.html
URL: 
http://svn.apache.org/viewvc/activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/component/mock/package.html?view=auto&rev=530708
==============================================================================
--- 
activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/component/mock/package.html
 (added)
+++ 
activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/component/mock/package.html
 Fri Apr 20 02:14:07 2007
@@ -0,0 +1,25 @@
+<!--
+    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.
+-->
+<html>
+<head>
+</head>
+<body>
+
+The <a href="http://activemq.apache.org/camel/mock.html";>Mock Component</a> 
which is used for testing of routing and mediation rules.
+
+</body>
+</html>

Propchange: 
activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/component/mock/package.html
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: 
activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/component/pojo/package.html
URL: 
http://svn.apache.org/viewvc/activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/component/pojo/package.html?view=diff&rev=530708&r1=530707&r2=530708
==============================================================================
--- 
activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/component/pojo/package.html
 (original)
+++ 
activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/component/pojo/package.html
 Fri Apr 20 02:14:07 2007
@@ -19,7 +19,7 @@
 </head>
 <body>
 
-A simple Reflection based Camel Component.
+The <a href="http://activemq.apache.org/camel/pojo.html";>POJO Component</a> 
provides a simple Reflection based transport.
 
 </body>
 </html>

Added: 
activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/component/pojo/timer/package.html
URL: 
http://svn.apache.org/viewvc/activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/component/pojo/timer/package.html?view=auto&rev=530708
==============================================================================
--- 
activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/component/pojo/timer/package.html
 (added)
+++ 
activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/component/pojo/timer/package.html
 Fri Apr 20 02:14:07 2007
@@ -0,0 +1,25 @@
+<!--
+    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.
+-->
+<html>
+<head>
+</head>
+<body>
+
+The <a href="http://activemq.apache.org/camel/timer.html";>Timer Component</a> 
extends the POJO component to provide a simple timer
+
+</body>
+</html>

Propchange: 
activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/component/pojo/timer/package.html
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: 
activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/component/queue/package.html
URL: 
http://svn.apache.org/viewvc/activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/component/queue/package.html?view=diff&rev=530708&r1=530707&r2=530708
==============================================================================
--- 
activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/component/queue/package.html
 (original)
+++ 
activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/component/queue/package.html
 Fri Apr 20 02:14:07 2007
@@ -19,6 +19,8 @@
 </head>
 <body>
 
+The <a href="http://activemq.apache.org/camel/queue.html";>Queue Component</a> 
provides asynchronous (in-VM) dispatch
+of messages to consumer to implement
 <a href="http://www.eecs.harvard.edu/~mdw/proj/seda/";>SEDA</a> based message 
routing using Java's
 <a 
href="http://java.sun.com/j2se/1.5.0/docs/api/java/util/Queue.html";>Queue</a> 
interface.
 


Reply via email to