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 2023/07/13 12:15:33 UTC

[camel] branch regen_bot updated (3ed74267fd7 -> 82c8ebe8528)

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 3ed74267fd7 CAMEL-19602: components - Add metadata for an option that refers to a file resource for tooling
     add d1891886f2f CAMEL-19601: StreamCaching can configure allow/deny list of classes to control what can be cached or not.
     add 82c8ebe8528 CAMEL-19601: StreamCaching can configure allow/deny list of classes to control what can be cached or not.

No new revisions were added by this update.

Summary of changes:
 .../main/camel-main-configuration-metadata.json    |   2 +
 .../apache/camel/catalog/schemas/camel-spring.xsd  |  20 +++
 .../processor/SpringStreamCachingStrategyTest.java |   5 +
 .../processor/SpringStreamCachingStrategyTest.xml  |   3 +-
 .../apache/camel/spi/StreamCachingStrategy.java    |  37 +++++
 .../impl/engine/DefaultStreamCachingStrategy.java  |  87 ++++++++++-
 .../org/apache/camel/core/xml/streamCaching.json   |  24 +--
 .../core/xml/AbstractCamelContextFactoryBean.java  |   8 +
 .../xml/CamelStreamCachingStrategyDefinition.java  |  28 ++++
 .../processor/StreamCachingAllowDenyTest.java      | 161 +++++++++++++++++++++
 .../MainConfigurationPropertiesConfigurer.java     |  12 ++
 .../camel-main-configuration-metadata.json         |   2 +
 core/camel-main/src/main/docs/main.adoc            |   4 +-
 .../camel/main/DefaultConfigurationConfigurer.java |   2 +
 .../camel/main/DefaultConfigurationProperties.java |  44 ++++++
 .../mbean/ManagedStreamCachingStrategyMBean.java   |   6 +
 .../mbean/ManagedStreamCachingStrategy.java        |  22 +++
 .../modules/ROOT/pages/stream-caching.adoc         |   4 +
 18 files changed, 457 insertions(+), 14 deletions(-)
 create mode 100644 core/camel-core/src/test/java/org/apache/camel/processor/StreamCachingAllowDenyTest.java