You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by or...@apache.org on 2023/03/24 13:09:58 UTC

[camel] branch main updated: CAMEL-15105: remove the deprecated ExtendedExchange

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

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


The following commit(s) were added to refs/heads/main by this push:
     new 4573d85be96 CAMEL-15105: remove the deprecated ExtendedExchange
4573d85be96 is described below

commit 4573d85be96152db820222929948734582be49b1
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Fri Mar 24 12:47:34 2023 +0100

    CAMEL-15105: remove the deprecated ExtendedExchange
---
 .../java/org/apache/camel/ExtendedExchange.java    | 28 ----------------------
 1 file changed, 28 deletions(-)

diff --git a/core/camel-api/src/main/java/org/apache/camel/ExtendedExchange.java b/core/camel-api/src/main/java/org/apache/camel/ExtendedExchange.java
deleted file mode 100644
index 0c89ca439a8..00000000000
--- a/core/camel-api/src/main/java/org/apache/camel/ExtendedExchange.java
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
- * 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;
-
-/**
- * Extended {@link Exchange} which contains the methods and APIs that are not intended for Camel end users but used
- * internally by Camel for optimization purposes, SPI, custom components, or more advanced used-cases with Camel.
- *
- * This interface is deprecated. Use {@link ExchangeExtension}
- */
-@Deprecated
-public interface ExtendedExchange extends Exchange {
-
-}