This is an automated email from the ASF dual-hosted git repository. orpiske pushed a commit to branch camel-4.14.x in repository https://gitbox.apache.org/repos/asf/camel.git
commit 5f5222a53cee8dbfcabb68700decbc68a5d549e9 Author: Otavio Rodolfo Piske <[email protected]> AuthorDate: Mon Sep 1 13:39:03 2025 +0200 CAMEL-22398: allow agents to define the specifics of the exchange body (compat layer) Compatibility layer for Camel 4.14 --- .../camel/component/langchain4j/agent/Headers.java | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/components/camel-ai/camel-langchain4j-agent/src/main/java/org/apache/camel/component/langchain4j/agent/Headers.java b/components/camel-ai/camel-langchain4j-agent/src/main/java/org/apache/camel/component/langchain4j/agent/Headers.java new file mode 100644 index 00000000000..3911d1ba8c2 --- /dev/null +++ b/components/camel-ai/camel-langchain4j-agent/src/main/java/org/apache/camel/component/langchain4j/agent/Headers.java @@ -0,0 +1,27 @@ +/* + * 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.component.langchain4j.agent; + +/** + * Headers that the agent component may rely on. Use the one from + * org.apache.camel.component.langchain4j.agent.api.Headers + */ +@Deprecated +public class Headers extends org.apache.camel.component.langchain4j.agent.api.Headers { + +}
