You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by gn...@apache.org on 2007/03/07 22:15:59 UTC

svn commit: r515768 - /incubator/servicemix/branches/servicemix-3.1/common/servicemix-common/src/main/java/org/apache/servicemix/common/BaseComponent.java

Author: gnodet
Date: Wed Mar  7 13:15:58 2007
New Revision: 515768

URL: http://svn.apache.org/viewvc?view=rev&rev=515768
Log:
Fix compilation

Modified:
    incubator/servicemix/branches/servicemix-3.1/common/servicemix-common/src/main/java/org/apache/servicemix/common/BaseComponent.java

Modified: incubator/servicemix/branches/servicemix-3.1/common/servicemix-common/src/main/java/org/apache/servicemix/common/BaseComponent.java
URL: http://svn.apache.org/viewvc/incubator/servicemix/branches/servicemix-3.1/common/servicemix-common/src/main/java/org/apache/servicemix/common/BaseComponent.java?view=diff&rev=515768&r1=515767&r2=515768
==============================================================================
--- incubator/servicemix/branches/servicemix-3.1/common/servicemix-common/src/main/java/org/apache/servicemix/common/BaseComponent.java (original)
+++ incubator/servicemix/branches/servicemix-3.1/common/servicemix-common/src/main/java/org/apache/servicemix/common/BaseComponent.java Wed Mar  7 13:15:58 2007
@@ -194,6 +194,10 @@
         lifeCycle.sendConsumerExchange(exchange, endpoint);
     }
 
+    public void prepareConsumerExchange(MessageExchange exchange, Endpoint endpoint) throws MessagingException {
+        lifeCycle.prepareConsumerExchange(exchange, endpoint);
+    }
+
     public QName getEPRElementName() {
         return null;
     }