You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2019/06/20 06:14:41 UTC

[camel] 11/18: CAMEL-13636: camel3 - SPI for ReactiveHelper so we can plugin different reactive engines

This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 26a54578b2d6e18f3038f6c2f7e2c680063fde97
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Thu Jun 13 10:07:09 2019 +0200

    CAMEL-13636: camel3 - SPI for ReactiveHelper so we can plugin different reactive engines
---
 .../camel/{reacitve => reactive/vertx}/VertXReactiveExecutor.java       | 2 +-
 .../main/resources/META-INF/services/org/apache/camel/reactive-executor | 2 +-
 .../src/test/java/org/apache/camel/reactive/SimpleMockTest.java         | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/core/camel-reactive-executor-vertx/src/main/java/org/apache/camel/reacitve/VertXReactiveExecutor.java b/core/camel-reactive-executor-vertx/src/main/java/org/apache/camel/reactive/vertx/VertXReactiveExecutor.java
similarity index 98%
rename from core/camel-reactive-executor-vertx/src/main/java/org/apache/camel/reacitve/VertXReactiveExecutor.java
rename to core/camel-reactive-executor-vertx/src/main/java/org/apache/camel/reactive/vertx/VertXReactiveExecutor.java
index 5e2f507..298875c 100644
--- a/core/camel-reactive-executor-vertx/src/main/java/org/apache/camel/reacitve/VertXReactiveExecutor.java
+++ b/core/camel-reactive-executor-vertx/src/main/java/org/apache/camel/reactive/vertx/VertXReactiveExecutor.java
@@ -14,7 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package org.apache.camel.reacitve;
+package org.apache.camel.reactive.vertx;
 
 import io.vertx.core.Vertx;
 import org.apache.camel.StaticService;
diff --git a/core/camel-reactive-executor-vertx/src/main/resources/META-INF/services/org/apache/camel/reactive-executor b/core/camel-reactive-executor-vertx/src/main/resources/META-INF/services/org/apache/camel/reactive-executor
index 68975fc..554c5d6 100644
--- a/core/camel-reactive-executor-vertx/src/main/resources/META-INF/services/org/apache/camel/reactive-executor
+++ b/core/camel-reactive-executor-vertx/src/main/resources/META-INF/services/org/apache/camel/reactive-executor
@@ -15,4 +15,4 @@
 # limitations under the License.
 #
 
-class=org.apache.camel.reactive.VertXReactiveExecutor
+class=org.apache.camel.reactive.vertx.VertXReactiveExecutor
diff --git a/core/camel-reactive-executor-vertx/src/test/java/org/apache/camel/reactive/SimpleMockTest.java b/core/camel-reactive-executor-vertx/src/test/java/org/apache/camel/reactive/SimpleMockTest.java
index 924952f..3383e73 100644
--- a/core/camel-reactive-executor-vertx/src/test/java/org/apache/camel/reactive/SimpleMockTest.java
+++ b/core/camel-reactive-executor-vertx/src/test/java/org/apache/camel/reactive/SimpleMockTest.java
@@ -19,7 +19,7 @@ package org.apache.camel.reactive;
 import org.apache.camel.CamelContext;
 import org.apache.camel.builder.RouteBuilder;
 import org.apache.camel.component.mock.MockEndpoint;
-import org.apache.camel.reacitve.VertXReactiveExecutor;
+import org.apache.camel.reactive.vertx.VertXReactiveExecutor;
 import org.apache.camel.test.junit4.CamelTestSupport;
 import org.junit.Test;