aldettinger commented on code in PR #511:
URL: 
https://github.com/apache/camel-quarkus-examples/pull/511#discussion_r3375110992


##########
amq-broker-keycloak/src/main/java/org/acme/routes/SoapInventoryRoute.java:
##########
@@ -14,25 +14,20 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package org.acme.http.pqc.profiles;
+package org.acme.routes;
 
-import java.util.Map;
+import jakarta.enterprise.context.ApplicationScoped;
+import org.apache.camel.builder.RouteBuilder;
+import org.apache.camel.component.cxf.common.message.CxfConstants;
 
-import io.quarkus.test.junit.QuarkusTestProfile;
-
-/**
- * Test profile for PQC-only configuration (no fallback).
- * Activates the "pqc-only" profile which configures X25519MLKEM768 ONLY.
- */
-public class PqcOnlyProfile implements QuarkusTestProfile {
-
-    @Override
-    public String getConfigProfile() {
-        return "pqc-only";
-    }
+@ApplicationScoped
+public class SoapInventoryRoute extends RouteBuilder {
 
     @Override
-    public Map<String, String> getConfigOverrides() {
-        return Map.of("jdk.tls.namedGroups", "X25519MLKEM768");
+    public void configure() {
+        from("cxf:bean:inventoryService")

Review Comment:
   Ok, the integration logic has been changed following intent clarification



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to