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 280669e Regen
new 86b61ba Adding support for meta and verifier extension
new 5926e27 Additional fixes according feedback provided in PR #3217
The 2 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/mongodb/MongoDbComponent.java | 4 +
.../conf/ConnectionParamsConfiguration.java | 80 +++++++++++
.../mongodb/meta/MongoDBMetaExtension.java | 106 ++++++++++++++
.../verifier/MongoComponentVerifierExtension.java | 101 ++++++++++++++
.../component/mongodb/AbstractMongoDbTest.java | 33 +++++
.../component/mongodb/EmbedMongoConfiguration.java | 2 +-
.../mongodb/meta/MongoDbMetaExtensionTest.java | 153 +++++++++++++++++++++
.../verifier/MongoDbVerifierExtensionTest.java | 140 +++++++++++++++++++
8 files changed, 618 insertions(+), 1 deletion(-)
create mode 100644
components/camel-mongodb/src/main/java/org/apache/camel/component/mongodb/conf/ConnectionParamsConfiguration.java
create mode 100644
components/camel-mongodb/src/main/java/org/apache/camel/component/mongodb/meta/MongoDBMetaExtension.java
create mode 100644
components/camel-mongodb/src/main/java/org/apache/camel/component/mongodb/verifier/MongoComponentVerifierExtension.java
create mode 100644
components/camel-mongodb/src/test/java/org/apache/camel/component/mongodb/meta/MongoDbMetaExtensionTest.java
create mode 100644
components/camel-mongodb/src/test/java/org/apache/camel/component/mongodb/verifier/MongoDbVerifierExtensionTest.java