You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by oa...@apache.org on 2020/01/28 09:49:06 UTC

[camel] branch master updated (3a5caba -> e5949ee)

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

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


    from 3a5caba  Upgrade Jgroups to version 4.1.9.Final
     new fddeea6  CAMEL-14443 new camel-jira producers - Added AddIssueLinkProducer, AddWorkLogProducer, FetchCommentsProducer & FetchCommentsProducer - Updated JiraConstants, JiraEndpoint & JiraType to enable the new producers - Added tests to verify the new producers
     new 5a99e92  CAMEL-14443 new camel-jira producers Updated PR to follow peer review feedback and match checkstyle
     new e5949ee  Merge pull request #3518 from clementmouchet/CAMEL-14443

The 41898 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:
 .../apache/camel/component/jira/JiraConstants.java |   5 +-
 .../apache/camel/component/jira/JiraEndpoint.java  |  12 ++
 .../org/apache/camel/component/jira/JiraType.java  |  10 +-
 .../jira/producer/AddIssueLinkProducer.java        |  65 ++++++
 .../jira/producer/AddWorkLogProducer.java          |  63 ++++++
 .../jira/producer/FetchCommentsProducer.java       |  45 ++++
 .../jira/producer/FetchIssueProducer.java          |  45 ++++
 .../org/apache/camel/component/jira/Utils.java     |  35 +++-
 .../jira/producer/AddIssueLinkProducerTest.java    | 230 +++++++++++++++++++++
 .../jira/producer/AddWorkLogProducerTest.java      | 206 ++++++++++++++++++
 .../jira/producer/FetchCommentsProducerTest.java   | 130 ++++++++++++
 .../jira/producer/FetchIssueProducerTest.java      | 128 ++++++++++++
 .../endpoint/dsl/JiraEndpointBuilderFactory.java   |   6 +-
 13 files changed, 975 insertions(+), 5 deletions(-)
 create mode 100644 components/camel-jira/src/main/java/org/apache/camel/component/jira/producer/AddIssueLinkProducer.java
 create mode 100644 components/camel-jira/src/main/java/org/apache/camel/component/jira/producer/AddWorkLogProducer.java
 create mode 100644 components/camel-jira/src/main/java/org/apache/camel/component/jira/producer/FetchCommentsProducer.java
 create mode 100644 components/camel-jira/src/main/java/org/apache/camel/component/jira/producer/FetchIssueProducer.java
 create mode 100644 components/camel-jira/src/test/java/org/apache/camel/component/jira/producer/AddIssueLinkProducerTest.java
 create mode 100644 components/camel-jira/src/test/java/org/apache/camel/component/jira/producer/AddWorkLogProducerTest.java
 create mode 100644 components/camel-jira/src/test/java/org/apache/camel/component/jira/producer/FetchCommentsProducerTest.java
 create mode 100644 components/camel-jira/src/test/java/org/apache/camel/component/jira/producer/FetchIssueProducerTest.java