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

davsclaus 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 095619d7615 Polished
095619d7615 is described below

commit 095619d7615d91b581304d90fd8e995d31eb6a2f
Author: Claus Ibsen <[email protected]>
AuthorDate: Fri Aug 29 13:53:59 2025 +0200

    Polished
---
 components/camel-jpa/src/main/docs/jpa-component.adoc | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/components/camel-jpa/src/main/docs/jpa-component.adoc 
b/components/camel-jpa/src/main/docs/jpa-component.adoc
index ba0ded3a44d..9c39db4aee0 100644
--- a/components/camel-jpa/src/main/docs/jpa-component.adoc
+++ b/components/camel-jpa/src/main/docs/jpa-component.adoc
@@ -102,11 +102,10 @@ URI. This will result in the entity being processed in 
each poll.
 
 If you would rather perform some update on the entity to mark it as
 processed (such as to exclude it from a future query), then you can
-annotate a method with
-https://www.javadoc.io/doc/org.apache.camel/camel-jpa/current/org/apache/camel/component/jpa/Consumed.html[@Consumed].
+annotate a method with `@Consumed` (org.apache.camel.component.jpa.Consumed).
 It will be invoked on your entity bean when the entity bean has been processed 
(and when routing is done).
 
-You can use 
https://www.javadoc.io/doc/org.apache.camel/camel-jpa/current/org/apache/camel/component/jpa/PreConsumed.html[@PreConsumed]
+You can use `@PreConsumed` (org.apache.camel.component.jpa.PreConsumed)
 which will be invoked on your entity bean before it has been processed
 (before routing).
 

Reply via email to