You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2019/02/28 06:08:12 UTC

[camel] branch master updated (dd5414c -> 5489024)

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

davsclaus pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git.


    from dd5414c  CAMEL-13266: Fixed a mistake if JMX was disabled in Spring Boot
     new 81189e9  CAMEL-13272: File producer - Issue with toD when using moveExisting
     new 6ee2014  CAMEL-13272: File producer - Issue with toD when using moveExisting
     new ad4e4c8  CAMEL-13272: File producer - Issue with toD when using moveExisting
     new 52eed71  CAMEL-13266: Fixed a mistake if JMX was disabled in Spring Boot
     new 8473569  CAMEL-13272: File producer - Issue with toD when using moveExisting
     new 5489024  CAMEL-13266: Fixed a mistake if JMX was disabled in Spring Boot

The 35772 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../camel/component/file/FileSendDynamicAware.java |  23 +++++
 .../file/GenericFileSendDynamicAware.java          | 103 +++++++++++++++++++++
 .../component/file/remote/FtpSendDynamicAware.java |  24 +++++
 .../file/remote/FtpsSendDynamicAware.java          |  24 +++++
 .../file/remote/SftpSendDynamicAware.java          |  24 +++++
 .../remote/FtpProducerToDMoveExistingTest.java     |  64 +++++++++++++
 .../camel/http/common/HttpSendDynamicAware.java    |   6 +-
 .../http/common/HttpSendDynamicAwareTest.java      |  16 ++--
 components/camel-http4/pom.xml                     |   5 +
 ...ageWithSpringPropertyPlaceholderRouteTest.java} |   4 +-
 ...SpringPropertyPlaceholderRouteTest-context.xml} |   0
 .../org/apache/camel/test/junit4/TestSupport.java  |  10 ++
 .../camel/spi/ManagementStrategyFactory.java       |   1 -
 .../org/apache/camel/spi/SendDynamicAware.java     |  15 ++-
 .../impl/DefaultManagementStrategyFactory.java     |  12 ++-
 .../camel/processor/SendDynamicProcessor.java      |   3 +-
 .../test/java/org/apache/camel/TestSupport.java    |  10 ++
 .../camel/component/bar/BarSendDynamicAware.java   |   6 +-
 .../file/FileProducerToDMoveExistingTest.java      |  62 +++++++++++++
 .../camel/management/JmxManagementStrategy.java    |   7 +-
 .../management/JmxManagementStrategyFactory.java   |  12 ++-
 21 files changed, 394 insertions(+), 37 deletions(-)
 create mode 100644 components/camel-file/src/main/java/org/apache/camel/component/file/FileSendDynamicAware.java
 create mode 100644 components/camel-file/src/main/java/org/apache/camel/component/file/GenericFileSendDynamicAware.java
 create mode 100644 components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/FtpSendDynamicAware.java
 create mode 100644 components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/FtpsSendDynamicAware.java
 create mode 100644 components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/SftpSendDynamicAware.java
 create mode 100644 components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/FtpProducerToDMoveExistingTest.java
 rename components/camel-spring/src/test/java/org/apache/camel/spring/placeholder/{SimpleLanguageWithSprinPropertyPlaceholderRouteTest.java => SimpleLanguageWithSpringPropertyPlaceholderRouteTest.java} (94%)
 rename components/camel-spring/src/test/resources/org/apache/camel/spring/placeholder/{SimpleLanguageWithSprinPropertyPlaceholderRouteTest-context.xml => SimpleLanguageWithSpringPropertyPlaceholderRouteTest-context.xml} (100%)
 create mode 100644 core/camel-core/src/test/java/org/apache/camel/component/file/FileProducerToDMoveExistingTest.java