Skip to content

Commit

Permalink
Assert that Component DSL and Endpoint DSL work for AtlasMap
Browse files Browse the repository at this point in the history
  • Loading branch information
ppalaga committed Nov 1, 2021
1 parent fc5520e commit 25b8fd5
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
/*
* 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.
*/
package org.apache.camel.quarkus.component.atlasmap.it;

import javax.enterprise.context.ApplicationScoped;
import javax.inject.Named;
import javax.inject.Singleton;

import org.apache.camel.builder.component.ComponentsBuilderFactory;
import org.apache.camel.component.atlasmap.AtlasMapComponent;

@ApplicationScoped
public class AtlasmapComponentDsl {
@Singleton
@Named
AtlasMapComponent atlasmap() {
/* Make sure that Component DSL works for Atlasmap */
return ComponentsBuilderFactory.atlasmap().build();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@
*/
package org.apache.camel.quarkus.component.atlasmap.it;

import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.builder.endpoint.EndpointRouteBuilder;
import org.apache.camel.quarkus.component.atlasmap.it.model.Account;

public class Route extends RouteBuilder {
public class Route extends EndpointRouteBuilder {
@Override
public void configure() throws Exception {

// example of Routes that need the class Account to be registred for reflection
from("platform-http:/atlasmap/json/java2csv?httpMethodRestrict=POST")
.unmarshal().json(Account.class)
.to("atlasmap:mapping/json/atlasmapping-java-to-csv.json");
.to(atlasmap("mapping/json/atlasmapping-java-to-csv.json"));

from("platform-http:/atlasmap/json/csv2java?httpMethodRestrict=POST")
.to("atlasmap:mapping/json/atlasmapping-csv-to-java.json")
Expand Down

0 comments on commit 25b8fd5

Please sign in to comment.