This is an automated email from the ASF dual-hosted git repository.
alfonsonishikawa pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/gora.git.
from cd5ec39 Merge pull request #228 from mgov88/GORA-665
new a6b817d Allow to load mappings from properties instead only from files
new 733d3b2 Add properties for DataStoreMetadataAnalyzer
new 314ac44 Implement the retrieval of native information from MongoDB
new 810a3a4 Add test case for loading mappings from properties
new c49efe2 Add collection document's types to
MongoStoreCollectionMetadata
new d742155 Add test case for MongoStoreMetadataAnalyzer
new db487fa Make document types a list of Strings instead of Classes
new 6defdc7 Merge pull request #231 from
podorvanova/gora-557-add-support-for-mongodb
The 1353 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:
.../gora/store/DataStoreMetadataFactory.java | 1 +
.../gora/store/impl/DataStoreMetadataAnalyzer.java | 14 +++
.../apache/gora/mongodb/store/MongoMapping.java | 17 +++
.../gora/mongodb/store/MongoMappingBuilder.java | 14 +--
.../org/apache/gora/mongodb/store/MongoStore.java | 30 ++++-
.../store/MongoStoreCollectionMetadata.java | 79 ++++++++++++
.../mongodb/store/MongoStoreMetadataAnalyzer.java | 83 +++++++++++++
.../mongodb/store/TestMongoMappingBuilder.java | 2 +-
.../store/TestMongoStoreMappingFromProperties.java | 58 +++++----
.../store/TestMongoStoreMetadataAnalyzer.java | 134 +++++++++++++++++++++
10 files changed, 394 insertions(+), 38 deletions(-)
create mode 100644
gora-mongodb/src/main/java/org/apache/gora/mongodb/store/MongoStoreCollectionMetadata.java
create mode 100644
gora-mongodb/src/main/java/org/apache/gora/mongodb/store/MongoStoreMetadataAnalyzer.java
copy
gora-hbase/src/test/java/org/apache/gora/hbase/store/TestHBaseStoreMappingFromProperties.java
=>
gora-mongodb/src/test/java/org/apache/gora/mongodb/store/TestMongoStoreMappingFromProperties.java
(54%)
create mode 100644
gora-mongodb/src/test/java/org/apache/gora/mongodb/store/TestMongoStoreMetadataAnalyzer.java