You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2020/01/26 12:18:56 UTC

[camel] branch master updated (1008608 -> bcb6785)

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

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


    from 1008608  Fixed CS
     new fc2ca1c  CAMEL-13237: add multiple reply markup types to text message
     new 0cadf83  CAMEL-13237: add multiple reply markup types to photo message
     new 7438931  CAMEL-13237: add multiple reply markup types to audio message
     new e5186d6  CAMEL-13237: add multiple reply markup types to document message
     new 1f95d85  CAMEL-13237: add multiple reply markup types to video message
     new 3b989a0  CAMEL-13237: add multiple reply markup types to venue/location message
     new bcb6785  Merge pull request #3515 from mcserra/CAMEL-13237-Multiple-reply-markup-types

The 41810 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:
 .../component/telegram/TelegramConstants.java      |   2 +
 .../camel/component/telegram/model/ForceReply.java |  67 ++++++++++
 .../telegram/model/InlineKeyboardMarkup.java       |   5 +-
 .../telegram/model/OutgoingAudioMessage.java       |  16 +++
 .../telegram/model/OutgoingDocumentMessage.java    |  18 +++
 .../telegram/model/OutgoingPhotoMessage.java       |  19 ++-
 .../telegram/model/OutgoingTextMessage.java        |  22 ++--
 .../telegram/model/OutgoingVideoMessage.java       |  16 +++
 .../telegram/model/ReplyKeyboardMarkup.java        |  43 ++++++-
 .../telegram/model/ReplyKeyboardRemove.java        |  65 ++++++++++
 .../component/telegram/model/ReplyMarkup.java}     |  13 +-
 .../telegram/model/SendLocationMessage.java        |  12 +-
 .../component/telegram/model/SendVenueMessage.java |  12 +-
 .../service/TelegramServiceRestBotAPIAdapter.java  |   4 +
 .../component/telegram/util/TelegramConverter.java |  10 +-
 .../telegram/TelegramConsumerMediaGameTest.java    |   2 +-
 .../telegram/TelegramProducerMediaTest.java        | 116 ++++++++++++++++-
 .../telegram/integration/TelegramServiceTest.java  | 139 +++++++++++++++++++--
 .../telegram/util/TelegramTestSupport.java         |   2 +-
 19 files changed, 534 insertions(+), 49 deletions(-)
 create mode 100644 components/camel-telegram/src/main/java/org/apache/camel/component/telegram/model/ForceReply.java
 create mode 100644 components/camel-telegram/src/main/java/org/apache/camel/component/telegram/model/ReplyKeyboardRemove.java
 copy components/{camel-jackson/src/test/java/org/apache/camel/component/jackson/MyJsonObjectMapper.java => camel-telegram/src/main/java/org/apache/camel/component/telegram/model/ReplyMarkup.java} (68%)