You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by gi...@apache.org on 2024/03/20 13:49:48 UTC

(camel) branch regen_bot updated (c25e21a8c95 -> e280224c9f2)

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

github-bot pushed a change to branch regen_bot
in repository https://gitbox.apache.org/repos/asf/camel.git


    from c25e21a8c95 Partial revert of 0fb5aa31ae590eb042a1664ff18b6d5c44acc5c4 because of CAMEL-20585 (#13549)
     add e280224c9f2 CAMEL-17641: Generate json metadata for pojo beans in camel-core that end users can use such as AggregationStrategy implementations. And have that information in camel-catalog for tooling assistance.

No new revisions were added by this update.

Summary of changes:
 .../org/apache/camel/catalog/beans.properties      |  5 ++
 .../catalog/beans/CronScheduledRoutePolicy.json    | 16 ++++
 .../camel/catalog/beans/DurationRoutePolicy.json   | 16 ++++
 .../catalog/beans/SimpleScheduledRoutePolicy.json  | 16 ++++
 .../beans/ThrottlingExceptionRoutePolicy.json      | 16 ++++
 .../beans/ThrottlingInflightRoutePolicy.json       | 16 ++++
 .../quartz/CronScheduledRoutePolicyConfigurer.java | 73 ++++++++++++++++
 .../SimpleScheduledRoutePolicyConfigurer.java      | 97 ++++++++++++++++++++++
 .../services/org/apache/camel/bean.properties      |  7 ++
 .../camel/bean/CronScheduledRoutePolicy.json       | 16 ++++
 .../camel/bean/SimpleScheduledRoutePolicy.json     | 16 ++++
 ...mel.routepolicy.quartz.CronScheduledRoutePolicy |  2 +
 ...l.routepolicy.quartz.SimpleScheduledRoutePolicy |  2 +
 .../quartz/CronScheduledRoutePolicy.java           | 11 +++
 .../routepolicy/quartz/ScheduledRoutePolicy.java   |  4 +
 .../quartz/SimpleScheduledRoutePolicy.java         | 14 ++++
 .../impl/engine/DurationRoutePolicyConfigurer.java | 61 ++++++++++++++
 .../services/org/apache/camel/bean.properties      |  7 ++
 .../org/apache/camel/bean/DurationRoutePolicy.json | 16 ++++
 ...rg.apache.camel.impl.engine.DurationRoutePolicy |  2 +
 .../camel/impl/engine/DurationRoutePolicy.java     | 14 +++-
 .../ThrottlingExceptionRoutePolicyConfigurer.java  | 73 ++++++++++++++++
 .../ThrottlingInflightRoutePolicyConfigurer.java   | 67 +++++++++++++++
 .../services/org/apache/camel/bean.properties      |  2 +-
 .../camel/bean/ThrottlingExceptionRoutePolicy.json | 16 ++++
 .../camel/bean/ThrottlingInflightRoutePolicy.json  | 16 ++++
 ...camel.throttling.ThrottlingExceptionRoutePolicy |  2 +
 ....camel.throttling.ThrottlingInflightRoutePolicy |  2 +
 .../throttling/ThrottlingExceptionRoutePolicy.java | 49 +++++++++--
 .../throttling/ThrottlingInflightRoutePolicy.java  | 10 +++
 30 files changed, 655 insertions(+), 9 deletions(-)
 create mode 100644 catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/beans/CronScheduledRoutePolicy.json
 create mode 100644 catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/beans/DurationRoutePolicy.json
 create mode 100644 catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/beans/SimpleScheduledRoutePolicy.json
 create mode 100644 catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/beans/ThrottlingExceptionRoutePolicy.json
 create mode 100644 catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/beans/ThrottlingInflightRoutePolicy.json
 create mode 100644 components/camel-quartz/src/generated/java/org/apache/camel/routepolicy/quartz/CronScheduledRoutePolicyConfigurer.java
 create mode 100644 components/camel-quartz/src/generated/java/org/apache/camel/routepolicy/quartz/SimpleScheduledRoutePolicyConfigurer.java
 create mode 100644 components/camel-quartz/src/generated/resources/META-INF/services/org/apache/camel/bean.properties
 create mode 100644 components/camel-quartz/src/generated/resources/META-INF/services/org/apache/camel/bean/CronScheduledRoutePolicy.json
 create mode 100644 components/camel-quartz/src/generated/resources/META-INF/services/org/apache/camel/bean/SimpleScheduledRoutePolicy.json
 create mode 100644 components/camel-quartz/src/generated/resources/META-INF/services/org/apache/camel/configurer/org.apache.camel.routepolicy.quartz.CronScheduledRoutePolicy
 create mode 100644 components/camel-quartz/src/generated/resources/META-INF/services/org/apache/camel/configurer/org.apache.camel.routepolicy.quartz.SimpleScheduledRoutePolicy
 create mode 100644 core/camel-base-engine/src/generated/java/org/apache/camel/impl/engine/DurationRoutePolicyConfigurer.java
 create mode 100644 core/camel-base-engine/src/generated/resources/META-INF/services/org/apache/camel/bean.properties
 create mode 100644 core/camel-base-engine/src/generated/resources/META-INF/services/org/apache/camel/bean/DurationRoutePolicy.json
 create mode 100644 core/camel-base-engine/src/generated/resources/META-INF/services/org/apache/camel/configurer/org.apache.camel.impl.engine.DurationRoutePolicy
 create mode 100644 core/camel-support/src/generated/java/org/apache/camel/throttling/ThrottlingExceptionRoutePolicyConfigurer.java
 create mode 100644 core/camel-support/src/generated/java/org/apache/camel/throttling/ThrottlingInflightRoutePolicyConfigurer.java
 create mode 100644 core/camel-support/src/generated/resources/META-INF/services/org/apache/camel/bean/ThrottlingExceptionRoutePolicy.json
 create mode 100644 core/camel-support/src/generated/resources/META-INF/services/org/apache/camel/bean/ThrottlingInflightRoutePolicy.json
 create mode 100644 core/camel-support/src/generated/resources/META-INF/services/org/apache/camel/configurer/org.apache.camel.throttling.ThrottlingExceptionRoutePolicy
 create mode 100644 core/camel-support/src/generated/resources/META-INF/services/org/apache/camel/configurer/org.apache.camel.throttling.ThrottlingInflightRoutePolicy