├── .codebeatignore ├── .gitignore ├── .mvn └── wrapper │ ├── MavenWrapperDownloader.java │ └── maven-wrapper.properties ├── .travis.yml ├── LICENSE.txt ├── README.md ├── kmongo-annotation-processor ├── pom.xml ├── src │ ├── main │ │ ├── kotlin │ │ │ └── org │ │ │ │ └── litote │ │ │ │ └── kmongo │ │ │ │ └── KMongoAnnotationProcessor.kt │ │ └── resources │ │ │ └── META-INF │ │ │ └── services │ │ │ └── javax.annotation.processing.Processor │ └── test │ │ ├── kotlin │ │ └── org │ │ │ └── litote │ │ │ └── kmongo │ │ │ ├── InternalTest.kt │ │ │ ├── MockedClassMappingTypeService.kt │ │ │ ├── PathTest.kt │ │ │ ├── SerializationTest.kt │ │ │ ├── annotation │ │ │ └── ProcessorTest.kt │ │ │ ├── issue │ │ │ ├── Issue130ParentGeneric.kt │ │ │ └── Issue132ProjectionsAreNotAllowed.kt │ │ │ └── model │ │ │ ├── AnnotatedFileSample.kt │ │ │ ├── InternalDataClass.kt │ │ │ ├── NotAnnotatedData.kt │ │ │ ├── SimpleReferenced2Data.kt │ │ │ ├── SubData.kt │ │ │ ├── SubData2.kt │ │ │ ├── TestData.kt │ │ │ └── other │ │ │ └── SimpleReferencedData.kt │ │ └── resources │ │ └── META-INF │ │ └── services │ │ ├── javax.annotation.processing.Processor │ │ ├── org.litote.jackson.JacksonModuleServiceLoader │ │ └── org.litote.kmongo.service.ClassMappingTypeService └── target │ └── generated-sources │ └── kapt │ └── test │ └── org │ └── litote │ └── kmongo │ └── model │ ├── InternalDataClass_.kt │ ├── InternalDataClass_Deserializer.kt │ ├── InternalDataClass_Serializer.kt │ ├── NotAnnotatedData_.kt │ ├── SimpleReferenced2Data_.kt │ ├── SimpleReferenced2Data_Deserializer.kt │ ├── SimpleReferenced2Data_Serializer.kt │ ├── SubData2_.kt │ ├── SubData_.kt │ ├── TestData_.kt │ ├── TestData_Deserializer.kt │ ├── TestData_Serializer.kt │ └── other │ └── SimpleReferencedData_.kt ├── kmongo-async-core-tests ├── pom.xml └── src │ └── main │ └── kotlin │ └── org │ └── litote │ └── kmongo │ └── reactivestreams │ ├── AggregateTest.kt │ ├── CommandTest.kt │ ├── CountTest.kt │ ├── DeleteTest.kt │ ├── DistinctTest.kt │ ├── FindOneAndModifyTest.kt │ ├── FindOneTest.kt │ ├── KMongoReactiveStreamsBaseTest.kt │ ├── ProjectionTest.kt │ ├── ReplaceTest.kt │ ├── UpdateTest.kt │ └── WatchTest.kt ├── kmongo-async-core ├── pom.xml └── src │ └── main │ └── kotlin │ └── org │ └── litote │ └── kmongo │ └── reactivestreams │ ├── MongoCollections.kt │ ├── MongoDatabases.kt │ └── Publishers.kt ├── kmongo-async-native └── pom.xml ├── kmongo-async-serialization └── pom.xml ├── kmongo-async-shared ├── pom.xml └── src │ ├── main │ ├── kotlin │ │ └── org │ │ │ └── litote │ │ │ └── kmongo │ │ │ └── reactivestreams │ │ │ ├── DistinctPublishers.kt │ │ │ ├── FindPublishers.kt │ │ │ ├── KMongo.kt │ │ │ ├── MapReducePublishers.kt │ │ │ ├── MongoSharedCollections.kt │ │ │ ├── MongoSharedDatabases.kt │ │ │ └── service │ │ │ └── ReactiveStreamsMongoClientProviderService.kt │ └── resources │ │ └── META-INF │ │ └── services │ │ └── org.litote.kmongo.service.MongoClientProviderService │ └── test │ ├── kotlin │ └── org │ │ └── litote │ │ └── kmongo │ │ ├── MockedClassMappingType.kt │ │ └── reactivestreams │ │ └── MongoSharedDatabasesTest.kt │ └── resources │ └── META-INF │ └── services │ └── org.litote.kmongo.service.ClassMappingTypeService ├── kmongo-async └── pom.xml ├── kmongo-benchmark ├── README.md ├── common │ ├── pom.xml │ └── src │ │ └── main │ │ └── kotlin │ │ └── org │ │ └── litote │ │ └── kmongo │ │ ├── Coordinate.kt │ │ ├── Friend.kt │ │ ├── FriendWithBuddies.kt │ │ ├── Gender.kt │ │ ├── KMongoBenchmark.kt │ │ └── util │ │ └── KMongoCodecBase.kt ├── data │ ├── Friend.json │ ├── FriendWithBuddies.json │ ├── FriendWithBuddiesAndCodec.json │ ├── FriendWithBuddiesData.json │ ├── jackson020618.json │ ├── jackson061219.json │ ├── jackson170119.json │ ├── native020618.json │ ├── native061219.json │ ├── native170119.json │ └── serialization061219.json ├── jackson │ ├── benchmark.sh │ ├── pom.xml │ └── src │ │ └── main │ │ └── kotlin │ │ └── org │ │ └── litote │ │ └── kmongo │ │ ├── CodecRegistryBenchmark.kt │ │ └── FriendWithCustomDeserializer.kt ├── native │ ├── benchmark.sh │ ├── pom.xml │ └── src │ │ └── main │ │ └── kotlin │ │ └── org │ │ └── litote │ │ └── kmongo │ │ ├── CodecRegistryBenchmark.kt │ │ └── FriendWithCustomCodec.kt ├── pom.xml └── serialization │ ├── benchmark.sh │ ├── pom.xml │ └── src │ └── main │ └── kotlin │ └── SerializationCodecRegistryBenchmark.kt ├── kmongo-core-tests ├── pom.xml └── src │ └── main │ └── kotlin │ └── org │ └── litote │ └── kmongo │ ├── AggregateTest.kt │ ├── AggregateTypedTest.kt │ ├── AllCategoriesKMongoBaseTest.kt │ ├── BigDecimalTest.kt │ ├── BinaryTest.kt │ ├── BsonIdTest.kt │ ├── BsonIdTypedTest.kt │ ├── BulkWriteTest.kt │ ├── BulkWriteTypedTest.kt │ ├── ChangeStreamTest.kt │ ├── CommandTest.kt │ ├── CountTest.kt │ ├── CountTypedTest.kt │ ├── DateTest.kt │ ├── DeleteTest.kt │ ├── DeleteTypedTest.kt │ ├── DistinctTest.kt │ ├── DistinctTypedTest.kt │ ├── FindOneAndModifyTest.kt │ ├── FindOneAndModifyTypedTest.kt │ ├── FindOneTest.kt │ ├── FindOneTypedTest.kt │ ├── IdTest.kt │ ├── IndexTest.kt │ ├── JsonExtensionTest.kt │ ├── KMongoBaseTest.kt │ ├── KTXDateTest.kt │ ├── KotlinClassesTest.kt │ ├── MapReduceTest.kt │ ├── PersistingNotNullTest.kt │ ├── ProjectionTest.kt │ ├── ReplaceTest.kt │ ├── ReplaceTypedTest.kt │ ├── SaveTest.kt │ ├── TimestampTest.kt │ ├── TypedOperationsTest.kt │ ├── UpdateTest.kt │ ├── UpdateTypedTest.kt │ ├── UpdateWithoutNullPropertiesTest.kt │ ├── UsageTest.kt │ ├── UsageTypedTest.kt │ ├── issues │ ├── Issue102ErrorWithNewProjectionSystem.kt │ ├── Issue103CantSerializeStringId.kt │ ├── Issue108ProjectionError.kt │ ├── Issue111MongoPoint.kt │ ├── Issue11BsonSerializerCanOnlyBeUsedWithBsonGenerator.kt │ ├── Issue128BsonIdNotRecognized.kt │ ├── Issue12EqToLocaleQueryCrash.kt │ ├── Issue157FilterForEnumValueFails.kt │ ├── Issue15SavingListOfBdRefNotWorkingCorrectly.kt │ ├── Issue16GetIdPropertyAndMap.kt │ ├── Issue18SavingDBRefContainingAnObjectIdBreaks.kt │ ├── Issue191PatternRegexpIssue.kt │ ├── Issue195BsonInvalidIdException.kt │ ├── Issue196SerializationOfMapWithEnumKeysFails.kt │ ├── Issue19updateOneByIdUpdateParameterInconsistent.kt │ ├── Issue1ExceptionWhenGeneratin_IdOfPrivateClass.kt │ ├── Issue20NeedAWayToBypassDocumentValidationOnSave.kt │ ├── Issue21SupportTransientToNotBeSaved.kt │ ├── Issue232FloatSerialization.kt │ ├── Issue245UuidRepresentation.kt │ ├── Issue254PathCaching.kt │ ├── Issue255LookupWithNestedObjects.kt │ ├── Issue257BsonFieldNotSerialized.kt │ ├── Issue258UpdateListOfReferences.kt │ ├── Issue272FindOneAndUpdate.kt │ ├── Issue30DBObjectInsertException.kt │ ├── Issue314ValueClass.kt │ ├── Issue34FindOneAndUpdateOrReplaceOrDeleteCouldReturnNull.kt │ ├── Issue383FilterId.kt │ ├── Issue384BehaviourEvaluate.kt │ ├── Issue3CrashOnEnumPropertyInAnnotationIntrospector.kt │ ├── Issue409RegexpOption.kt │ ├── Issue48UpdateOperatorInMap.kt │ ├── Issue49ShouldNotFilterInnerObjectIdOnUpdate.kt │ ├── Issue4FilterIdToExtendedJsonThrowKotlinException.kt │ ├── Issue70FailToAccessTheLastFieldInADataClass.kt │ ├── Issue94InconsistentIdGeneration.kt │ ├── Issue95NullDeserializedTo0.kt │ └── Issue96SetOfObjectIds.kt │ ├── other │ └── MongoIterableTest.kt │ └── session │ ├── AggregateWithSessionTest.kt │ ├── BulkWriteWithSessionTest.kt │ ├── ChangeStreamWithSessionTest.kt │ ├── CommandWithSessionTest.kt │ ├── CountWithSessionTest.kt │ ├── DeleteWithSessionTest.kt │ ├── FindOneAndModifyWithSessionTest.kt │ ├── ProjectionWithSessionTest.kt │ ├── ReplaceWithSessionTest.kt │ ├── SaveWithSessionTest.kt │ └── UpdateWithSessionTest.kt ├── kmongo-core ├── pom.xml └── src │ └── main │ ├── kotlin │ ├── kotlin │ │ ├── collections │ │ │ └── KMongoIterable.kt │ │ └── internal │ │ │ └── Annotations.kt │ └── org │ │ └── litote │ │ └── kmongo │ │ ├── ChangeStreamIterables.kt │ │ ├── DistinctIterables.kt │ │ ├── FindIterables.kt │ │ ├── KMongo.kt │ │ ├── MapReduceIterables.kt │ │ ├── MongoCollections.kt │ │ ├── MongoCollectionsWithClientSession.kt │ │ ├── MongoDatabases.kt │ │ ├── MongoDatabasesWithClientSession.kt │ │ ├── MongoIterables.kt │ │ ├── SyncProperties.kt │ │ └── service │ │ └── SyncMongoClientProviderService.kt │ └── resources │ └── META-INF │ └── services │ └── org.litote.kmongo.service.MongoClientProviderService ├── kmongo-coroutine-core-tests ├── pom.xml └── src │ └── main │ └── kotlin │ └── org │ └── litote │ └── kmongo │ └── coroutine │ ├── CoroutineAggregatePublisherTest.kt │ ├── CoroutineDistinctPublisherTest.kt │ ├── CoroutineFindPublisherTest.kt │ ├── CoroutineListCollectionsPublisherTest.kt │ ├── CoroutineListIndexesPublisherTest.kt │ ├── CoroutineMapReducePublisherTest.kt │ ├── CoroutinePublisherTest.kt │ ├── CouroutineChangeStreamPublisherTest.kt │ ├── KMongoCoroutineBaseTest.kt │ ├── KMongoReactiveStreamsCoroutineBaseTest.kt │ ├── ReactiveStreamProjectionTest.kt │ ├── ReactiveStreamSaveTest.kt │ ├── ReactiveStreamsAggregateTest.kt │ ├── ReactiveStreamsBinaryTest.kt │ ├── ReactiveStreamsBulkWriteTest.kt │ ├── ReactiveStreamsCommandTest.kt │ ├── ReactiveStreamsCountTest.kt │ ├── ReactiveStreamsDeleteTest.kt │ ├── ReactiveStreamsDistinctTest.kt │ ├── ReactiveStreamsFindOneAndModifyTest.kt │ ├── ReactiveStreamsFindOneTest.kt │ ├── ReactiveStreamsIndexTest.kt │ ├── ReactiveStreamsInsertTest.kt │ ├── ReactiveStreamsReplaceTest.kt │ ├── ReactiveStreamsUpdateTest.kt │ ├── TestPublishers.kt │ └── issues │ ├── Issue118DeserializeNotConstructorParams.kt │ ├── Issue182CustomCodec.kt │ ├── Issue198NoValueReceivedViaOnNext.kt │ ├── Issue34FindOneAndUpdateOrReplaceOrDeleteCouldReturnNull.kt │ ├── Issue390SetToWithEnumSerialName.kt │ └── Issue69NullOrEmptyBsonDeleteManyCrash.kt ├── kmongo-coroutine-core ├── pom.xml └── src │ └── main │ └── kotlin │ └── org │ └── litote │ └── kmongo │ └── coroutine │ ├── CoroutineAggregatePublisher.kt │ ├── CoroutineChangeStreamPublisher.kt │ ├── CoroutineClient.kt │ ├── CoroutineClientSessions.kt │ ├── CoroutineCollection.kt │ ├── CoroutineDatabase.kt │ ├── CoroutineDistinctPublisher.kt │ ├── CoroutineFindPublisher.kt │ ├── CoroutineListCollectionsPublisher.kt │ ├── CoroutineListIndexesPublisher.kt │ ├── CoroutineMapReducePublisher.kt │ ├── CoroutinePublisher.kt │ └── Coroutines.kt ├── kmongo-coroutine-native └── pom.xml ├── kmongo-coroutine-serialization ├── pom.xml └── src │ └── test │ └── kotlin │ ├── Issue228WrappedObjectId.kt │ ├── Issue247SealedClassInsertMany.kt │ ├── Issue248ContainerWithSimplePolymorphism.kt │ ├── Issue248PolymorphismWithInstant.kt │ └── Issue248SimplePolymorphism.kt ├── kmongo-coroutine └── pom.xml ├── kmongo-coverage └── pom.xml ├── kmongo-data ├── pom.xml └── src │ └── main │ └── kotlin │ └── org │ └── litote │ └── kmongo │ ├── Data.kt │ └── DataRegistry.kt ├── kmongo-dokka └── pom.xml ├── kmongo-flapdoodle ├── pom.xml └── src │ ├── main │ └── kotlin │ │ └── org │ │ └── litote │ │ └── kmongo │ │ ├── EmbeddedMongo.kt │ │ ├── EmbeddedMongoLog.kt │ │ ├── KFlapdoodle.kt │ │ ├── KFlapdoodleConfiguration.kt │ │ ├── KFlapdoodleRule.kt │ │ ├── ReplicaSetEmbeddedMongo.kt │ │ ├── StandaloneEmbeddedMongo.kt │ │ ├── coroutine │ │ └── CoroutineFlapdoodleRule.kt │ │ ├── reactivestreams │ │ ├── KFlapdoodleReactiveStreams.kt │ │ ├── KFlapdoodleReactiveStreamsConfiguration.kt │ │ ├── ReactiveStreamsFlapdoodleRule.kt │ │ ├── ReactiveStreamsTestContext.kt │ │ └── SimpleSubscriber.kt │ │ ├── reactor │ │ └── ReactorFlapdoodleRule.kt │ │ └── rxjava2 │ │ └── RxFlapdoodleRule.kt │ └── test │ ├── kotlin │ └── org │ │ └── litote │ │ └── kmongo │ │ ├── KFlapdoodleRuleTest.kt │ │ ├── StandaloneEmbeddedMongoTest.kt │ │ └── service │ │ └── SyncMongoClientProviderService.kt │ └── resources │ └── META-INF │ └── services │ └── org.litote.kmongo.service.MongoClientProviderService ├── kmongo-id-jackson ├── pom.xml └── src │ ├── main │ └── kotlin │ │ └── org │ │ └── litote │ │ └── kmongo │ │ └── id │ │ └── jackson │ │ ├── IdJacksonModule.kt │ │ ├── IdKeyDeserializer.kt │ │ ├── IdKeySerializer.kt │ │ ├── IdToStringSerializer.kt │ │ └── StringToIdDeserializer.kt │ └── test │ └── kotlin │ └── org │ └── litote │ └── kmongo │ └── id │ └── jackson │ └── IdJsonTest.kt ├── kmongo-id-serialization ├── pom.xml └── src │ ├── main │ └── kotlin │ │ └── IdModule.kt │ └── test │ └── kotlin │ └── IdModuleTest.kt ├── kmongo-id ├── pom.xml └── src │ ├── main │ ├── kotlin │ │ └── org │ │ │ └── litote │ │ │ └── kmongo │ │ │ ├── Id.kt │ │ │ ├── id │ │ │ ├── IdGenerator.kt │ │ │ ├── IdGeneratorProvider.kt │ │ │ ├── StringId.kt │ │ │ ├── UUIDStringIdGenerator.kt │ │ │ └── UUIDStringIdGeneratorProvider.kt │ │ │ └── ids.kt │ └── resources │ │ └── META-INF │ │ └── services │ │ └── org.litote.kmongo.id.IdGeneratorProvider │ └── test │ └── kotlin │ └── IdTest.kt ├── kmongo-jackson-mapping ├── pom.xml └── src │ ├── main │ ├── kotlin │ │ └── org │ │ │ └── litote │ │ │ └── kmongo │ │ │ ├── jackson │ │ │ ├── BsonModule.kt │ │ │ ├── ExtendedJsonModule.kt │ │ │ ├── FilterIdModule.kt │ │ │ ├── JacksonClassMappingTypeService.kt │ │ │ ├── JacksonCodec.kt │ │ │ ├── JacksonCodecProvider.kt │ │ │ ├── KMongoAnnotationIntrospector.kt │ │ │ ├── KMongoBsonFactory.kt │ │ │ ├── ObjectMapperFactory.kt │ │ │ └── StringDeserializationProblemHandler.kt │ │ │ └── util │ │ │ ├── KMongoConfiguration.kt │ │ │ └── MongoIdUtil.kt │ └── resources │ │ └── META-INF │ │ └── services │ │ └── org.litote.kmongo.service.ClassMappingTypeService │ └── test │ ├── kotlin │ └── org │ │ └── litote │ │ └── kmongo │ │ ├── jackson │ │ ├── Issue147OtherTypeSupportForBigDecimal.kt │ │ ├── JacksonClassMappingTypeServiceTest.kt │ │ ├── ObjectMapperFactoryTest.kt │ │ └── UUIDTest.kt │ │ └── util │ │ ├── JacksonModuleServiceLoaderTest.kt │ │ ├── KMongoConfigurationTest.kt │ │ ├── KMongoJacksonFeatureTest.kt │ │ └── MongoIdUtilTest.kt │ └── resources │ └── META-INF │ └── services │ └── org.litote.jackson.JacksonModuleServiceLoader ├── kmongo-kdoc ├── docs │ ├── about.md │ ├── assets │ │ └── images │ │ │ ├── benchmark1.png │ │ │ ├── benchmark2.png │ │ │ ├── benchmark3.png │ │ │ ├── benchmark4.png │ │ │ ├── favicon.ico │ │ │ ├── favicon.png │ │ │ └── kmongo.png │ ├── extensions-overview.md │ ├── index.md │ ├── mongo-shell-support.md │ ├── object-mapping.md │ ├── performance.md │ ├── quick-start.md │ └── typed-queries.md └── mkdocs.yml ├── kmongo-native-mapping ├── pom.xml └── src │ ├── main │ ├── kotlin │ │ └── org │ │ │ ├── bson │ │ │ └── codecs │ │ │ │ └── pojo │ │ │ │ ├── ClassModelBuilder2.java │ │ │ │ ├── Convention2.java │ │ │ │ ├── ConventionAnnotationImpl2.java │ │ │ │ ├── ConventionDefaultsImpl2.java │ │ │ │ ├── EmptyObjectConvention.kt │ │ │ │ ├── EnumCodec.kt │ │ │ │ ├── JavaTimeCodecProvider.kt │ │ │ │ ├── KMongoAnnotationConvention.kt │ │ │ │ ├── KMongoConvention.kt │ │ │ │ ├── KMongoPojoCodec.kt │ │ │ │ ├── KMongoPojoCodecProvider.kt │ │ │ │ ├── KMongoPojoCodecService.kt │ │ │ │ ├── KeyObjectMapPropertyCodecProvider.kt │ │ │ │ ├── KotlinInstanceCreator.kt │ │ │ │ ├── KotlinInstanceCreatorFactory.kt │ │ │ │ ├── MissingKotlinParameterException.kt │ │ │ │ ├── PairPropertyCodecProvider.kt │ │ │ │ ├── PojoBuilderHelper2.java │ │ │ │ ├── PojoCodecProvider2.java │ │ │ │ ├── PropertyReflectionUtils2.java │ │ │ │ ├── TriplePropertyCodecProvider.kt │ │ │ │ └── UtilClassesCodecProvider.kt │ │ │ └── litote │ │ │ └── kmongo │ │ │ └── pojo │ │ │ └── PojoClassMappingTypeService.kt │ └── resources │ │ └── META-INF │ │ └── services │ │ └── org.litote.kmongo.service.ClassMappingTypeService │ └── test │ └── kotlin │ └── org │ └── litote │ └── kmongo │ └── pojo │ └── PojoClassMappingTypeServiceTest.kt ├── kmongo-native ├── pom.xml └── src │ └── test │ └── kotlin │ └── org │ └── litote │ └── kmongo │ └── PojoAnnotationsTest.kt ├── kmongo-property ├── pom.xml └── src │ ├── main │ └── kotlin │ │ ├── kotlin │ │ └── internal │ │ │ └── Annotations.kt │ │ └── org │ │ └── litote │ │ └── kmongo │ │ ├── Accumulators.kt │ │ ├── Aggregates.kt │ │ ├── Documents.kt │ │ ├── Filters.kt │ │ ├── Indexes.kt │ │ ├── Projections.kt │ │ ├── Properties.kt │ │ ├── SetTo.kt │ │ ├── Sorts.kt │ │ ├── UnsignedUpdates.kt │ │ ├── Updates.kt │ │ └── property │ │ └── KPropertyPath.kt │ └── test │ ├── kotlin │ └── org │ │ └── litote │ │ └── kmongo │ │ ├── AggregatesTest.kt │ │ ├── FiltersTest.kt │ │ ├── MockedClassMappingTypeService.kt │ │ ├── ProjectionTest.kt │ │ ├── Tests.kt │ │ ├── UnsignedUpdatesTest.kt │ │ ├── UpdatesTest.kt │ │ ├── issue │ │ └── Issue276SubclassTypedQueryTest.kt │ │ └── property │ │ └── KPropertyPathTest.kt │ └── resources │ └── META-INF │ └── services │ └── org.litote.kmongo.service.ClassMappingTypeService ├── kmongo-reactor-core-tests ├── pom.xml └── src │ └── main │ └── kotlin │ └── org │ └── litote │ └── kmongo │ └── reactor │ ├── AggregateTest.kt │ ├── BinaryTest.kt │ ├── CommandTest.kt │ ├── CountTest.kt │ ├── DeleteTest.kt │ ├── DistinctTest.kt │ ├── FindOneAndModifyTest.kt │ ├── FindOneTest.kt │ ├── InsertTest.kt │ ├── KMongoReactiveStreamsReactorBaseTest.kt │ ├── KMongoReactorBaseTest.kt │ ├── ReactiveStreamsAggregateTest.kt │ ├── ReactiveStreamsBinaryTest.kt │ ├── ReactiveStreamsCommandTest.kt │ ├── ReactiveStreamsCountTest.kt │ ├── ReactiveStreamsDeleteTest.kt │ ├── ReactiveStreamsDistinctTest.kt │ ├── ReactiveStreamsFindOneAndModifyTest.kt │ ├── ReactiveStreamsFindOneTest.kt │ ├── ReactiveStreamsReplaceTest.kt │ ├── ReactiveStreamsUpdateTest.kt │ ├── ReplaceTest.kt │ └── UpdateTest.kt ├── kmongo-reactor-core ├── pom.xml └── src │ └── main │ └── kotlin │ └── org │ └── litote │ └── kmongo │ └── reactor │ ├── Publishers.kt │ ├── ReactiveStreamsMongoCollections.kt │ ├── ReactiveStreamsMongoDatabases.kt │ ├── ReactorMongoCollections.kt │ ├── ReactorMongoDatabases.kt │ └── Reactors.kt ├── kmongo-reactor-native └── pom.xml ├── kmongo-reactor-serialization └── pom.xml ├── kmongo-reactor └── pom.xml ├── kmongo-rxjava2-core-tests ├── pom.xml └── src │ └── main │ └── kotlin │ └── org │ └── litote │ └── kmongo │ └── rxjava2 │ ├── AggregateTest.kt │ ├── BinaryTest.kt │ ├── CommandTest.kt │ ├── CountTest.kt │ ├── DeleteTest.kt │ ├── DistinctTest.kt │ ├── FindOneAndModifyTest.kt │ ├── FindOneTest.kt │ ├── KMongoReactiveStreamsRxBaseTest.kt │ ├── KMongoRxBaseTest.kt │ ├── ReactiveStreamsAggregateTest.kt │ ├── ReactiveStreamsBinaryTest.kt │ ├── ReactiveStreamsCommandTest.kt │ ├── ReactiveStreamsCountTest.kt │ ├── ReactiveStreamsDeleteTest.kt │ ├── ReactiveStreamsDistinctTest.kt │ ├── ReactiveStreamsFindOneAndModifyTest.kt │ ├── ReactiveStreamsFindOneTest.kt │ ├── ReactiveStreamsReplaceTest.kt │ ├── ReactiveStreamsUpdateTest.kt │ ├── ReplaceTest.kt │ └── UpdateTest.kt ├── kmongo-rxjava2-core ├── pom.xml └── src │ └── main │ └── kotlin │ └── org │ └── litote │ └── kmongo │ └── rxjava2 │ ├── Publishers.kt │ ├── ReactiveStreamsMongoCollections.kt │ ├── ReactiveStreamsMongoDatabases.kt │ └── RxJavas.kt ├── kmongo-rxjava2-native └── pom.xml ├── kmongo-rxjava2-serialization └── pom.xml ├── kmongo-rxjava2 └── pom.xml ├── kmongo-serialization-mapping ├── pom.xml └── src │ ├── main │ ├── kotlin │ │ ├── IdController.kt │ │ ├── KMongoSerializationRepository.kt │ │ ├── Properties.kt │ │ ├── SerializationClassMappingTypeService.kt │ │ ├── SerializationCodec.kt │ │ ├── SerializationCodecRegistry.kt │ │ └── Serializers.kt │ └── resources │ │ └── META-INF │ │ └── services │ │ └── org.litote.kmongo.service.ClassMappingTypeService │ └── test │ └── kotlin │ ├── ExternalSerializerTest.kt │ ├── SerializationClassMappingTypeServiceTest.kt │ ├── SerializationCodecTest.kt │ └── TemporalSerializerTest.kt ├── kmongo-serialization ├── pom.xml └── src │ └── test │ └── kotlin │ ├── Issue167TransientNotWorking.kt │ ├── Issue218ModuleId.kt │ ├── Issue229SealedClass.kt │ ├── Issue237CustomSerializer.kt │ ├── Issue247SealedClassInsertMany.kt │ ├── Issue248PolymorphismWithInstant.kt │ ├── Issue250SaveCreatesAnOtherCopy.kt │ ├── Issue268ObjectIdNotProperlyDeserialized.kt │ ├── Issue281Projection.kt │ ├── Issue287UUID.kt │ ├── Issue307MaximumSerializationDepth.kt │ ├── Issue310SealedInterfaceSerializer.kt │ ├── Issue328FieldIdQueryFilterSerialization.kt │ ├── Issue331EnumSerialName.kt │ ├── Issue343SetToWithEnumSerialName.kt │ ├── Issue354KotlinIdFieldIgnored.kt │ ├── Issue365UUIDSerializer.kt │ ├── Issue415SerialName.kt │ └── ObjectInPolymorphicNotWorking.kt ├── kmongo-shared-tests-java ├── pom.xml └── src │ └── main │ └── java │ └── org │ └── litote │ └── kmongo │ └── issues │ ├── AbstractWithObjectId.java │ └── Foo.java ├── kmongo-shared-tests ├── pom.xml └── src │ └── main │ └── kotlin │ └── org │ └── litote │ └── kmongo │ ├── CoreCategory.kt │ ├── JacksonMappingCategory.kt │ ├── KMongoRootTest.kt │ ├── NativeMappingCategory.kt │ ├── SerializationMappingCategory.kt │ └── model │ ├── Coordinate.kt │ ├── ExposableFriend.kt │ ├── Friend.kt │ └── FriendContainer.kt ├── kmongo-shared ├── pom.xml └── src │ ├── main │ ├── kotlin │ │ └── org │ │ │ └── litote │ │ │ └── kmongo │ │ │ ├── MongoOperator.kt │ │ │ ├── MongoUtil.kt │ │ │ ├── SharedExtensions.kt │ │ │ ├── id │ │ │ ├── IdTransformer.kt │ │ │ ├── Ids.kt │ │ │ ├── MongoId.kt │ │ │ ├── MongoProperty.kt │ │ │ ├── ObjectIdGenerator.kt │ │ │ ├── ObjectIdGeneratorProvider.kt │ │ │ ├── ObjectIdToStringGenerator.kt │ │ │ └── WrappedObjectId.kt │ │ │ ├── service │ │ │ ├── ClassMappingType.kt │ │ │ ├── ClassMappingTypeService.kt │ │ │ ├── MongoClientProvider.kt │ │ │ └── MongoClientProviderService.kt │ │ │ └── util │ │ │ ├── CollectionNameFormatter.kt │ │ │ ├── KMongoUtil.kt │ │ │ ├── KotlinxDatetimeLoader.kt │ │ │ ├── ObjectMappingConfiguration.kt │ │ │ ├── PatternUtil.kt │ │ │ ├── SimpleExpression.kt │ │ │ ├── SimpleProjections.kt │ │ │ └── UpdateConfiguration.kt │ └── resources │ │ └── META-INF │ │ └── services │ │ └── org.litote.kmongo.id.IdGeneratorProvider │ └── test │ └── kotlin │ └── org │ └── litote │ └── kmongo │ ├── MongoOperatorTest.kt │ ├── service │ └── ClassMappingTypeServiceTest.kt │ └── util │ ├── CollectionNameFormatterTest.kt │ └── KMongoUtilTest.kt ├── kmongo ├── pom.xml └── src │ └── test │ └── kotlin │ └── org │ └── litote │ └── kmongo │ ├── MappingTest.kt │ ├── NullPropertyTest.kt │ └── issues │ ├── Issue135JsonIdentityInfo.kt │ ├── Issue136WriteObjectRef.kt │ ├── Issue247SealedClassInsertMany.kt │ ├── Issue268ObjectIdNotProperlyDeserialized.kt │ ├── Issue2IdNotGeneratedForSubclass.kt │ ├── Issue316ReplaceNotNull.kt │ ├── Issue35DateStoredAsTimestamp.kt │ ├── Issue371CustomEnum.kt │ ├── Issue374IsClosed.kt │ ├── Issue51ObjectNodeClassSerializedInArray.kt │ ├── Issue58PropertyIdHasDifferentDatatype.kt │ ├── Issue73BisIdNotDeserializedWhenUsingInterfaceAsCollectionClass.kt │ ├── Issue73IdNotDeserializedWhenUsingInterfaceAsCollectionClass.kt │ ├── Issue84EmbeddedDateWithInheritanceDeserializationFail.kt │ ├── Issue85ObjectIdIsNotProperlyDeserializedInAStringPropertyWhenPropertyIsInherited.kt │ └── TypedTest.kt ├── mvnw ├── mvnw.cmd └── pom.xml /.codebeatignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/.codebeatignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/README.md -------------------------------------------------------------------------------- /kmongo-annotation-processor/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-annotation-processor/pom.xml -------------------------------------------------------------------------------- /kmongo-annotation-processor/src/main/kotlin/org/litote/kmongo/KMongoAnnotationProcessor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-annotation-processor/src/main/kotlin/org/litote/kmongo/KMongoAnnotationProcessor.kt -------------------------------------------------------------------------------- /kmongo-annotation-processor/src/main/resources/META-INF/services/javax.annotation.processing.Processor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-annotation-processor/src/main/resources/META-INF/services/javax.annotation.processing.Processor -------------------------------------------------------------------------------- /kmongo-annotation-processor/src/test/kotlin/org/litote/kmongo/InternalTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-annotation-processor/src/test/kotlin/org/litote/kmongo/InternalTest.kt -------------------------------------------------------------------------------- /kmongo-annotation-processor/src/test/kotlin/org/litote/kmongo/MockedClassMappingTypeService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-annotation-processor/src/test/kotlin/org/litote/kmongo/MockedClassMappingTypeService.kt -------------------------------------------------------------------------------- /kmongo-annotation-processor/src/test/kotlin/org/litote/kmongo/PathTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-annotation-processor/src/test/kotlin/org/litote/kmongo/PathTest.kt -------------------------------------------------------------------------------- /kmongo-annotation-processor/src/test/kotlin/org/litote/kmongo/SerializationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-annotation-processor/src/test/kotlin/org/litote/kmongo/SerializationTest.kt -------------------------------------------------------------------------------- /kmongo-annotation-processor/src/test/kotlin/org/litote/kmongo/annotation/ProcessorTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-annotation-processor/src/test/kotlin/org/litote/kmongo/annotation/ProcessorTest.kt -------------------------------------------------------------------------------- /kmongo-annotation-processor/src/test/kotlin/org/litote/kmongo/issue/Issue130ParentGeneric.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-annotation-processor/src/test/kotlin/org/litote/kmongo/issue/Issue130ParentGeneric.kt -------------------------------------------------------------------------------- /kmongo-annotation-processor/src/test/kotlin/org/litote/kmongo/issue/Issue132ProjectionsAreNotAllowed.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-annotation-processor/src/test/kotlin/org/litote/kmongo/issue/Issue132ProjectionsAreNotAllowed.kt -------------------------------------------------------------------------------- /kmongo-annotation-processor/src/test/kotlin/org/litote/kmongo/model/AnnotatedFileSample.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-annotation-processor/src/test/kotlin/org/litote/kmongo/model/AnnotatedFileSample.kt -------------------------------------------------------------------------------- /kmongo-annotation-processor/src/test/kotlin/org/litote/kmongo/model/InternalDataClass.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-annotation-processor/src/test/kotlin/org/litote/kmongo/model/InternalDataClass.kt -------------------------------------------------------------------------------- /kmongo-annotation-processor/src/test/kotlin/org/litote/kmongo/model/NotAnnotatedData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-annotation-processor/src/test/kotlin/org/litote/kmongo/model/NotAnnotatedData.kt -------------------------------------------------------------------------------- /kmongo-annotation-processor/src/test/kotlin/org/litote/kmongo/model/SimpleReferenced2Data.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-annotation-processor/src/test/kotlin/org/litote/kmongo/model/SimpleReferenced2Data.kt -------------------------------------------------------------------------------- /kmongo-annotation-processor/src/test/kotlin/org/litote/kmongo/model/SubData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-annotation-processor/src/test/kotlin/org/litote/kmongo/model/SubData.kt -------------------------------------------------------------------------------- /kmongo-annotation-processor/src/test/kotlin/org/litote/kmongo/model/SubData2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-annotation-processor/src/test/kotlin/org/litote/kmongo/model/SubData2.kt -------------------------------------------------------------------------------- /kmongo-annotation-processor/src/test/kotlin/org/litote/kmongo/model/TestData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-annotation-processor/src/test/kotlin/org/litote/kmongo/model/TestData.kt -------------------------------------------------------------------------------- /kmongo-annotation-processor/src/test/kotlin/org/litote/kmongo/model/other/SimpleReferencedData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-annotation-processor/src/test/kotlin/org/litote/kmongo/model/other/SimpleReferencedData.kt -------------------------------------------------------------------------------- /kmongo-annotation-processor/src/test/resources/META-INF/services/javax.annotation.processing.Processor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-annotation-processor/src/test/resources/META-INF/services/javax.annotation.processing.Processor -------------------------------------------------------------------------------- /kmongo-annotation-processor/src/test/resources/META-INF/services/org.litote.jackson.JacksonModuleServiceLoader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-annotation-processor/src/test/resources/META-INF/services/org.litote.jackson.JacksonModuleServiceLoader -------------------------------------------------------------------------------- /kmongo-annotation-processor/src/test/resources/META-INF/services/org.litote.kmongo.service.ClassMappingTypeService: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-annotation-processor/src/test/resources/META-INF/services/org.litote.kmongo.service.ClassMappingTypeService -------------------------------------------------------------------------------- /kmongo-annotation-processor/target/generated-sources/kapt/test/org/litote/kmongo/model/InternalDataClass_.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-annotation-processor/target/generated-sources/kapt/test/org/litote/kmongo/model/InternalDataClass_.kt -------------------------------------------------------------------------------- /kmongo-annotation-processor/target/generated-sources/kapt/test/org/litote/kmongo/model/InternalDataClass_Deserializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-annotation-processor/target/generated-sources/kapt/test/org/litote/kmongo/model/InternalDataClass_Deserializer.kt -------------------------------------------------------------------------------- /kmongo-annotation-processor/target/generated-sources/kapt/test/org/litote/kmongo/model/InternalDataClass_Serializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-annotation-processor/target/generated-sources/kapt/test/org/litote/kmongo/model/InternalDataClass_Serializer.kt -------------------------------------------------------------------------------- /kmongo-annotation-processor/target/generated-sources/kapt/test/org/litote/kmongo/model/NotAnnotatedData_.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-annotation-processor/target/generated-sources/kapt/test/org/litote/kmongo/model/NotAnnotatedData_.kt -------------------------------------------------------------------------------- /kmongo-annotation-processor/target/generated-sources/kapt/test/org/litote/kmongo/model/SimpleReferenced2Data_.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-annotation-processor/target/generated-sources/kapt/test/org/litote/kmongo/model/SimpleReferenced2Data_.kt -------------------------------------------------------------------------------- /kmongo-annotation-processor/target/generated-sources/kapt/test/org/litote/kmongo/model/SimpleReferenced2Data_Deserializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-annotation-processor/target/generated-sources/kapt/test/org/litote/kmongo/model/SimpleReferenced2Data_Deserializer.kt -------------------------------------------------------------------------------- /kmongo-annotation-processor/target/generated-sources/kapt/test/org/litote/kmongo/model/SimpleReferenced2Data_Serializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-annotation-processor/target/generated-sources/kapt/test/org/litote/kmongo/model/SimpleReferenced2Data_Serializer.kt -------------------------------------------------------------------------------- /kmongo-annotation-processor/target/generated-sources/kapt/test/org/litote/kmongo/model/SubData2_.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-annotation-processor/target/generated-sources/kapt/test/org/litote/kmongo/model/SubData2_.kt -------------------------------------------------------------------------------- /kmongo-annotation-processor/target/generated-sources/kapt/test/org/litote/kmongo/model/SubData_.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-annotation-processor/target/generated-sources/kapt/test/org/litote/kmongo/model/SubData_.kt -------------------------------------------------------------------------------- /kmongo-annotation-processor/target/generated-sources/kapt/test/org/litote/kmongo/model/TestData_.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-annotation-processor/target/generated-sources/kapt/test/org/litote/kmongo/model/TestData_.kt -------------------------------------------------------------------------------- /kmongo-annotation-processor/target/generated-sources/kapt/test/org/litote/kmongo/model/TestData_Deserializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-annotation-processor/target/generated-sources/kapt/test/org/litote/kmongo/model/TestData_Deserializer.kt -------------------------------------------------------------------------------- /kmongo-annotation-processor/target/generated-sources/kapt/test/org/litote/kmongo/model/TestData_Serializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-annotation-processor/target/generated-sources/kapt/test/org/litote/kmongo/model/TestData_Serializer.kt -------------------------------------------------------------------------------- /kmongo-annotation-processor/target/generated-sources/kapt/test/org/litote/kmongo/model/other/SimpleReferencedData_.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-annotation-processor/target/generated-sources/kapt/test/org/litote/kmongo/model/other/SimpleReferencedData_.kt -------------------------------------------------------------------------------- /kmongo-async-core-tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-async-core-tests/pom.xml -------------------------------------------------------------------------------- /kmongo-async-core-tests/src/main/kotlin/org/litote/kmongo/reactivestreams/AggregateTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-async-core-tests/src/main/kotlin/org/litote/kmongo/reactivestreams/AggregateTest.kt -------------------------------------------------------------------------------- /kmongo-async-core-tests/src/main/kotlin/org/litote/kmongo/reactivestreams/CommandTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-async-core-tests/src/main/kotlin/org/litote/kmongo/reactivestreams/CommandTest.kt -------------------------------------------------------------------------------- /kmongo-async-core-tests/src/main/kotlin/org/litote/kmongo/reactivestreams/CountTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-async-core-tests/src/main/kotlin/org/litote/kmongo/reactivestreams/CountTest.kt -------------------------------------------------------------------------------- /kmongo-async-core-tests/src/main/kotlin/org/litote/kmongo/reactivestreams/DeleteTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-async-core-tests/src/main/kotlin/org/litote/kmongo/reactivestreams/DeleteTest.kt -------------------------------------------------------------------------------- /kmongo-async-core-tests/src/main/kotlin/org/litote/kmongo/reactivestreams/DistinctTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-async-core-tests/src/main/kotlin/org/litote/kmongo/reactivestreams/DistinctTest.kt -------------------------------------------------------------------------------- /kmongo-async-core-tests/src/main/kotlin/org/litote/kmongo/reactivestreams/FindOneAndModifyTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-async-core-tests/src/main/kotlin/org/litote/kmongo/reactivestreams/FindOneAndModifyTest.kt -------------------------------------------------------------------------------- /kmongo-async-core-tests/src/main/kotlin/org/litote/kmongo/reactivestreams/FindOneTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-async-core-tests/src/main/kotlin/org/litote/kmongo/reactivestreams/FindOneTest.kt -------------------------------------------------------------------------------- /kmongo-async-core-tests/src/main/kotlin/org/litote/kmongo/reactivestreams/KMongoReactiveStreamsBaseTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-async-core-tests/src/main/kotlin/org/litote/kmongo/reactivestreams/KMongoReactiveStreamsBaseTest.kt -------------------------------------------------------------------------------- /kmongo-async-core-tests/src/main/kotlin/org/litote/kmongo/reactivestreams/ProjectionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-async-core-tests/src/main/kotlin/org/litote/kmongo/reactivestreams/ProjectionTest.kt -------------------------------------------------------------------------------- /kmongo-async-core-tests/src/main/kotlin/org/litote/kmongo/reactivestreams/ReplaceTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-async-core-tests/src/main/kotlin/org/litote/kmongo/reactivestreams/ReplaceTest.kt -------------------------------------------------------------------------------- /kmongo-async-core-tests/src/main/kotlin/org/litote/kmongo/reactivestreams/UpdateTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-async-core-tests/src/main/kotlin/org/litote/kmongo/reactivestreams/UpdateTest.kt -------------------------------------------------------------------------------- /kmongo-async-core-tests/src/main/kotlin/org/litote/kmongo/reactivestreams/WatchTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-async-core-tests/src/main/kotlin/org/litote/kmongo/reactivestreams/WatchTest.kt -------------------------------------------------------------------------------- /kmongo-async-core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-async-core/pom.xml -------------------------------------------------------------------------------- /kmongo-async-core/src/main/kotlin/org/litote/kmongo/reactivestreams/MongoCollections.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-async-core/src/main/kotlin/org/litote/kmongo/reactivestreams/MongoCollections.kt -------------------------------------------------------------------------------- /kmongo-async-core/src/main/kotlin/org/litote/kmongo/reactivestreams/MongoDatabases.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-async-core/src/main/kotlin/org/litote/kmongo/reactivestreams/MongoDatabases.kt -------------------------------------------------------------------------------- /kmongo-async-core/src/main/kotlin/org/litote/kmongo/reactivestreams/Publishers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-async-core/src/main/kotlin/org/litote/kmongo/reactivestreams/Publishers.kt -------------------------------------------------------------------------------- /kmongo-async-native/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-async-native/pom.xml -------------------------------------------------------------------------------- /kmongo-async-serialization/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-async-serialization/pom.xml -------------------------------------------------------------------------------- /kmongo-async-shared/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-async-shared/pom.xml -------------------------------------------------------------------------------- /kmongo-async-shared/src/main/kotlin/org/litote/kmongo/reactivestreams/DistinctPublishers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-async-shared/src/main/kotlin/org/litote/kmongo/reactivestreams/DistinctPublishers.kt -------------------------------------------------------------------------------- /kmongo-async-shared/src/main/kotlin/org/litote/kmongo/reactivestreams/FindPublishers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-async-shared/src/main/kotlin/org/litote/kmongo/reactivestreams/FindPublishers.kt -------------------------------------------------------------------------------- /kmongo-async-shared/src/main/kotlin/org/litote/kmongo/reactivestreams/KMongo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-async-shared/src/main/kotlin/org/litote/kmongo/reactivestreams/KMongo.kt -------------------------------------------------------------------------------- /kmongo-async-shared/src/main/kotlin/org/litote/kmongo/reactivestreams/MapReducePublishers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-async-shared/src/main/kotlin/org/litote/kmongo/reactivestreams/MapReducePublishers.kt -------------------------------------------------------------------------------- /kmongo-async-shared/src/main/kotlin/org/litote/kmongo/reactivestreams/MongoSharedCollections.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-async-shared/src/main/kotlin/org/litote/kmongo/reactivestreams/MongoSharedCollections.kt -------------------------------------------------------------------------------- /kmongo-async-shared/src/main/kotlin/org/litote/kmongo/reactivestreams/MongoSharedDatabases.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-async-shared/src/main/kotlin/org/litote/kmongo/reactivestreams/MongoSharedDatabases.kt -------------------------------------------------------------------------------- /kmongo-async-shared/src/main/kotlin/org/litote/kmongo/reactivestreams/service/ReactiveStreamsMongoClientProviderService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-async-shared/src/main/kotlin/org/litote/kmongo/reactivestreams/service/ReactiveStreamsMongoClientProviderService.kt -------------------------------------------------------------------------------- /kmongo-async-shared/src/main/resources/META-INF/services/org.litote.kmongo.service.MongoClientProviderService: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-async-shared/src/main/resources/META-INF/services/org.litote.kmongo.service.MongoClientProviderService -------------------------------------------------------------------------------- /kmongo-async-shared/src/test/kotlin/org/litote/kmongo/MockedClassMappingType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-async-shared/src/test/kotlin/org/litote/kmongo/MockedClassMappingType.kt -------------------------------------------------------------------------------- /kmongo-async-shared/src/test/kotlin/org/litote/kmongo/reactivestreams/MongoSharedDatabasesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-async-shared/src/test/kotlin/org/litote/kmongo/reactivestreams/MongoSharedDatabasesTest.kt -------------------------------------------------------------------------------- /kmongo-async-shared/src/test/resources/META-INF/services/org.litote.kmongo.service.ClassMappingTypeService: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-async-shared/src/test/resources/META-INF/services/org.litote.kmongo.service.ClassMappingTypeService -------------------------------------------------------------------------------- /kmongo-async/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-async/pom.xml -------------------------------------------------------------------------------- /kmongo-benchmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-benchmark/README.md -------------------------------------------------------------------------------- /kmongo-benchmark/common/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-benchmark/common/pom.xml -------------------------------------------------------------------------------- /kmongo-benchmark/common/src/main/kotlin/org/litote/kmongo/Coordinate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-benchmark/common/src/main/kotlin/org/litote/kmongo/Coordinate.kt -------------------------------------------------------------------------------- /kmongo-benchmark/common/src/main/kotlin/org/litote/kmongo/Friend.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-benchmark/common/src/main/kotlin/org/litote/kmongo/Friend.kt -------------------------------------------------------------------------------- /kmongo-benchmark/common/src/main/kotlin/org/litote/kmongo/FriendWithBuddies.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-benchmark/common/src/main/kotlin/org/litote/kmongo/FriendWithBuddies.kt -------------------------------------------------------------------------------- /kmongo-benchmark/common/src/main/kotlin/org/litote/kmongo/Gender.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-benchmark/common/src/main/kotlin/org/litote/kmongo/Gender.kt -------------------------------------------------------------------------------- /kmongo-benchmark/common/src/main/kotlin/org/litote/kmongo/KMongoBenchmark.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-benchmark/common/src/main/kotlin/org/litote/kmongo/KMongoBenchmark.kt -------------------------------------------------------------------------------- /kmongo-benchmark/common/src/main/kotlin/org/litote/kmongo/util/KMongoCodecBase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-benchmark/common/src/main/kotlin/org/litote/kmongo/util/KMongoCodecBase.kt -------------------------------------------------------------------------------- /kmongo-benchmark/data/Friend.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-benchmark/data/Friend.json -------------------------------------------------------------------------------- /kmongo-benchmark/data/FriendWithBuddies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-benchmark/data/FriendWithBuddies.json -------------------------------------------------------------------------------- /kmongo-benchmark/data/FriendWithBuddiesAndCodec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-benchmark/data/FriendWithBuddiesAndCodec.json -------------------------------------------------------------------------------- /kmongo-benchmark/data/FriendWithBuddiesData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-benchmark/data/FriendWithBuddiesData.json -------------------------------------------------------------------------------- /kmongo-benchmark/data/jackson020618.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-benchmark/data/jackson020618.json -------------------------------------------------------------------------------- /kmongo-benchmark/data/jackson061219.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-benchmark/data/jackson061219.json -------------------------------------------------------------------------------- /kmongo-benchmark/data/jackson170119.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-benchmark/data/jackson170119.json -------------------------------------------------------------------------------- /kmongo-benchmark/data/native020618.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-benchmark/data/native020618.json -------------------------------------------------------------------------------- /kmongo-benchmark/data/native061219.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-benchmark/data/native061219.json -------------------------------------------------------------------------------- /kmongo-benchmark/data/native170119.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-benchmark/data/native170119.json -------------------------------------------------------------------------------- /kmongo-benchmark/data/serialization061219.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-benchmark/data/serialization061219.json -------------------------------------------------------------------------------- /kmongo-benchmark/jackson/benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-benchmark/jackson/benchmark.sh -------------------------------------------------------------------------------- /kmongo-benchmark/jackson/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-benchmark/jackson/pom.xml -------------------------------------------------------------------------------- /kmongo-benchmark/jackson/src/main/kotlin/org/litote/kmongo/CodecRegistryBenchmark.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-benchmark/jackson/src/main/kotlin/org/litote/kmongo/CodecRegistryBenchmark.kt -------------------------------------------------------------------------------- /kmongo-benchmark/jackson/src/main/kotlin/org/litote/kmongo/FriendWithCustomDeserializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-benchmark/jackson/src/main/kotlin/org/litote/kmongo/FriendWithCustomDeserializer.kt -------------------------------------------------------------------------------- /kmongo-benchmark/native/benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-benchmark/native/benchmark.sh -------------------------------------------------------------------------------- /kmongo-benchmark/native/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-benchmark/native/pom.xml -------------------------------------------------------------------------------- /kmongo-benchmark/native/src/main/kotlin/org/litote/kmongo/CodecRegistryBenchmark.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-benchmark/native/src/main/kotlin/org/litote/kmongo/CodecRegistryBenchmark.kt -------------------------------------------------------------------------------- /kmongo-benchmark/native/src/main/kotlin/org/litote/kmongo/FriendWithCustomCodec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-benchmark/native/src/main/kotlin/org/litote/kmongo/FriendWithCustomCodec.kt -------------------------------------------------------------------------------- /kmongo-benchmark/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-benchmark/pom.xml -------------------------------------------------------------------------------- /kmongo-benchmark/serialization/benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-benchmark/serialization/benchmark.sh -------------------------------------------------------------------------------- /kmongo-benchmark/serialization/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-benchmark/serialization/pom.xml -------------------------------------------------------------------------------- /kmongo-benchmark/serialization/src/main/kotlin/SerializationCodecRegistryBenchmark.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-benchmark/serialization/src/main/kotlin/SerializationCodecRegistryBenchmark.kt -------------------------------------------------------------------------------- /kmongo-core-tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/pom.xml -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/AggregateTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/AggregateTest.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/AggregateTypedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/AggregateTypedTest.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/AllCategoriesKMongoBaseTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/AllCategoriesKMongoBaseTest.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/BigDecimalTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/BigDecimalTest.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/BinaryTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/BinaryTest.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/BsonIdTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/BsonIdTest.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/BsonIdTypedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/BsonIdTypedTest.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/BulkWriteTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/BulkWriteTest.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/BulkWriteTypedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/BulkWriteTypedTest.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/ChangeStreamTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/ChangeStreamTest.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/CommandTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/CommandTest.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/CountTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/CountTest.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/CountTypedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/CountTypedTest.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/DateTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/DateTest.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/DeleteTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/DeleteTest.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/DeleteTypedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/DeleteTypedTest.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/DistinctTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/DistinctTest.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/DistinctTypedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/DistinctTypedTest.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/FindOneAndModifyTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/FindOneAndModifyTest.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/FindOneAndModifyTypedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/FindOneAndModifyTypedTest.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/FindOneTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/FindOneTest.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/FindOneTypedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/FindOneTypedTest.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/IdTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/IdTest.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/IndexTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/IndexTest.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/JsonExtensionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/JsonExtensionTest.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/KMongoBaseTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/KMongoBaseTest.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/KTXDateTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/KTXDateTest.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/KotlinClassesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/KotlinClassesTest.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/MapReduceTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/MapReduceTest.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/PersistingNotNullTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/PersistingNotNullTest.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/ProjectionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/ProjectionTest.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/ReplaceTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/ReplaceTest.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/ReplaceTypedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/ReplaceTypedTest.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/SaveTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/SaveTest.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/TimestampTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/TimestampTest.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/TypedOperationsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/TypedOperationsTest.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/UpdateTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/UpdateTest.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/UpdateTypedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/UpdateTypedTest.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/UpdateWithoutNullPropertiesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/UpdateWithoutNullPropertiesTest.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/UsageTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/UsageTest.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/UsageTypedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/UsageTypedTest.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue102ErrorWithNewProjectionSystem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue102ErrorWithNewProjectionSystem.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue103CantSerializeStringId.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue103CantSerializeStringId.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue108ProjectionError.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue108ProjectionError.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue111MongoPoint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue111MongoPoint.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue11BsonSerializerCanOnlyBeUsedWithBsonGenerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue11BsonSerializerCanOnlyBeUsedWithBsonGenerator.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue128BsonIdNotRecognized.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue128BsonIdNotRecognized.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue12EqToLocaleQueryCrash.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue12EqToLocaleQueryCrash.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue157FilterForEnumValueFails.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue157FilterForEnumValueFails.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue15SavingListOfBdRefNotWorkingCorrectly.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue15SavingListOfBdRefNotWorkingCorrectly.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue16GetIdPropertyAndMap.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue16GetIdPropertyAndMap.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue18SavingDBRefContainingAnObjectIdBreaks.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue18SavingDBRefContainingAnObjectIdBreaks.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue191PatternRegexpIssue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue191PatternRegexpIssue.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue195BsonInvalidIdException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue195BsonInvalidIdException.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue196SerializationOfMapWithEnumKeysFails.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue196SerializationOfMapWithEnumKeysFails.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue19updateOneByIdUpdateParameterInconsistent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue19updateOneByIdUpdateParameterInconsistent.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue1ExceptionWhenGeneratin_IdOfPrivateClass.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue1ExceptionWhenGeneratin_IdOfPrivateClass.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue20NeedAWayToBypassDocumentValidationOnSave.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue20NeedAWayToBypassDocumentValidationOnSave.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue21SupportTransientToNotBeSaved.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue21SupportTransientToNotBeSaved.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue232FloatSerialization.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue232FloatSerialization.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue245UuidRepresentation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue245UuidRepresentation.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue254PathCaching.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue254PathCaching.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue255LookupWithNestedObjects.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue255LookupWithNestedObjects.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue257BsonFieldNotSerialized.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue257BsonFieldNotSerialized.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue258UpdateListOfReferences.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue258UpdateListOfReferences.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue272FindOneAndUpdate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue272FindOneAndUpdate.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue30DBObjectInsertException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue30DBObjectInsertException.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue314ValueClass.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue314ValueClass.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue34FindOneAndUpdateOrReplaceOrDeleteCouldReturnNull.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue34FindOneAndUpdateOrReplaceOrDeleteCouldReturnNull.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue383FilterId.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue383FilterId.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue384BehaviourEvaluate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue384BehaviourEvaluate.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue3CrashOnEnumPropertyInAnnotationIntrospector.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue3CrashOnEnumPropertyInAnnotationIntrospector.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue409RegexpOption.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue409RegexpOption.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue48UpdateOperatorInMap.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue48UpdateOperatorInMap.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue49ShouldNotFilterInnerObjectIdOnUpdate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue49ShouldNotFilterInnerObjectIdOnUpdate.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue4FilterIdToExtendedJsonThrowKotlinException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue4FilterIdToExtendedJsonThrowKotlinException.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue70FailToAccessTheLastFieldInADataClass.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue70FailToAccessTheLastFieldInADataClass.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue94InconsistentIdGeneration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue94InconsistentIdGeneration.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue95NullDeserializedTo0.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue95NullDeserializedTo0.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue96SetOfObjectIds.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/issues/Issue96SetOfObjectIds.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/other/MongoIterableTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/other/MongoIterableTest.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/session/AggregateWithSessionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/session/AggregateWithSessionTest.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/session/BulkWriteWithSessionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/session/BulkWriteWithSessionTest.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/session/ChangeStreamWithSessionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/session/ChangeStreamWithSessionTest.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/session/CommandWithSessionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/session/CommandWithSessionTest.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/session/CountWithSessionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/session/CountWithSessionTest.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/session/DeleteWithSessionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/session/DeleteWithSessionTest.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/session/FindOneAndModifyWithSessionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/session/FindOneAndModifyWithSessionTest.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/session/ProjectionWithSessionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/session/ProjectionWithSessionTest.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/session/ReplaceWithSessionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/session/ReplaceWithSessionTest.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/session/SaveWithSessionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/session/SaveWithSessionTest.kt -------------------------------------------------------------------------------- /kmongo-core-tests/src/main/kotlin/org/litote/kmongo/session/UpdateWithSessionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core-tests/src/main/kotlin/org/litote/kmongo/session/UpdateWithSessionTest.kt -------------------------------------------------------------------------------- /kmongo-core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core/pom.xml -------------------------------------------------------------------------------- /kmongo-core/src/main/kotlin/kotlin/collections/KMongoIterable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core/src/main/kotlin/kotlin/collections/KMongoIterable.kt -------------------------------------------------------------------------------- /kmongo-core/src/main/kotlin/kotlin/internal/Annotations.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core/src/main/kotlin/kotlin/internal/Annotations.kt -------------------------------------------------------------------------------- /kmongo-core/src/main/kotlin/org/litote/kmongo/ChangeStreamIterables.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core/src/main/kotlin/org/litote/kmongo/ChangeStreamIterables.kt -------------------------------------------------------------------------------- /kmongo-core/src/main/kotlin/org/litote/kmongo/DistinctIterables.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core/src/main/kotlin/org/litote/kmongo/DistinctIterables.kt -------------------------------------------------------------------------------- /kmongo-core/src/main/kotlin/org/litote/kmongo/FindIterables.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core/src/main/kotlin/org/litote/kmongo/FindIterables.kt -------------------------------------------------------------------------------- /kmongo-core/src/main/kotlin/org/litote/kmongo/KMongo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core/src/main/kotlin/org/litote/kmongo/KMongo.kt -------------------------------------------------------------------------------- /kmongo-core/src/main/kotlin/org/litote/kmongo/MapReduceIterables.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core/src/main/kotlin/org/litote/kmongo/MapReduceIterables.kt -------------------------------------------------------------------------------- /kmongo-core/src/main/kotlin/org/litote/kmongo/MongoCollections.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core/src/main/kotlin/org/litote/kmongo/MongoCollections.kt -------------------------------------------------------------------------------- /kmongo-core/src/main/kotlin/org/litote/kmongo/MongoCollectionsWithClientSession.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core/src/main/kotlin/org/litote/kmongo/MongoCollectionsWithClientSession.kt -------------------------------------------------------------------------------- /kmongo-core/src/main/kotlin/org/litote/kmongo/MongoDatabases.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core/src/main/kotlin/org/litote/kmongo/MongoDatabases.kt -------------------------------------------------------------------------------- /kmongo-core/src/main/kotlin/org/litote/kmongo/MongoDatabasesWithClientSession.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core/src/main/kotlin/org/litote/kmongo/MongoDatabasesWithClientSession.kt -------------------------------------------------------------------------------- /kmongo-core/src/main/kotlin/org/litote/kmongo/MongoIterables.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core/src/main/kotlin/org/litote/kmongo/MongoIterables.kt -------------------------------------------------------------------------------- /kmongo-core/src/main/kotlin/org/litote/kmongo/SyncProperties.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core/src/main/kotlin/org/litote/kmongo/SyncProperties.kt -------------------------------------------------------------------------------- /kmongo-core/src/main/kotlin/org/litote/kmongo/service/SyncMongoClientProviderService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core/src/main/kotlin/org/litote/kmongo/service/SyncMongoClientProviderService.kt -------------------------------------------------------------------------------- /kmongo-core/src/main/resources/META-INF/services/org.litote.kmongo.service.MongoClientProviderService: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-core/src/main/resources/META-INF/services/org.litote.kmongo.service.MongoClientProviderService -------------------------------------------------------------------------------- /kmongo-coroutine-core-tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-core-tests/pom.xml -------------------------------------------------------------------------------- /kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/CoroutineAggregatePublisherTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/CoroutineAggregatePublisherTest.kt -------------------------------------------------------------------------------- /kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/CoroutineDistinctPublisherTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/CoroutineDistinctPublisherTest.kt -------------------------------------------------------------------------------- /kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/CoroutineFindPublisherTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/CoroutineFindPublisherTest.kt -------------------------------------------------------------------------------- /kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/CoroutineListCollectionsPublisherTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/CoroutineListCollectionsPublisherTest.kt -------------------------------------------------------------------------------- /kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/CoroutineListIndexesPublisherTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/CoroutineListIndexesPublisherTest.kt -------------------------------------------------------------------------------- /kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/CoroutineMapReducePublisherTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/CoroutineMapReducePublisherTest.kt -------------------------------------------------------------------------------- /kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/CoroutinePublisherTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/CoroutinePublisherTest.kt -------------------------------------------------------------------------------- /kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/CouroutineChangeStreamPublisherTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/CouroutineChangeStreamPublisherTest.kt -------------------------------------------------------------------------------- /kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/KMongoCoroutineBaseTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/KMongoCoroutineBaseTest.kt -------------------------------------------------------------------------------- /kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/KMongoReactiveStreamsCoroutineBaseTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/KMongoReactiveStreamsCoroutineBaseTest.kt -------------------------------------------------------------------------------- /kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/ReactiveStreamProjectionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/ReactiveStreamProjectionTest.kt -------------------------------------------------------------------------------- /kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/ReactiveStreamSaveTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/ReactiveStreamSaveTest.kt -------------------------------------------------------------------------------- /kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/ReactiveStreamsAggregateTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/ReactiveStreamsAggregateTest.kt -------------------------------------------------------------------------------- /kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/ReactiveStreamsBinaryTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/ReactiveStreamsBinaryTest.kt -------------------------------------------------------------------------------- /kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/ReactiveStreamsBulkWriteTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/ReactiveStreamsBulkWriteTest.kt -------------------------------------------------------------------------------- /kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/ReactiveStreamsCommandTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/ReactiveStreamsCommandTest.kt -------------------------------------------------------------------------------- /kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/ReactiveStreamsCountTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/ReactiveStreamsCountTest.kt -------------------------------------------------------------------------------- /kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/ReactiveStreamsDeleteTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/ReactiveStreamsDeleteTest.kt -------------------------------------------------------------------------------- /kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/ReactiveStreamsDistinctTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/ReactiveStreamsDistinctTest.kt -------------------------------------------------------------------------------- /kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/ReactiveStreamsFindOneAndModifyTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/ReactiveStreamsFindOneAndModifyTest.kt -------------------------------------------------------------------------------- /kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/ReactiveStreamsFindOneTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/ReactiveStreamsFindOneTest.kt -------------------------------------------------------------------------------- /kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/ReactiveStreamsIndexTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/ReactiveStreamsIndexTest.kt -------------------------------------------------------------------------------- /kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/ReactiveStreamsInsertTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/ReactiveStreamsInsertTest.kt -------------------------------------------------------------------------------- /kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/ReactiveStreamsReplaceTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/ReactiveStreamsReplaceTest.kt -------------------------------------------------------------------------------- /kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/ReactiveStreamsUpdateTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/ReactiveStreamsUpdateTest.kt -------------------------------------------------------------------------------- /kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/TestPublishers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/TestPublishers.kt -------------------------------------------------------------------------------- /kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/issues/Issue118DeserializeNotConstructorParams.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/issues/Issue118DeserializeNotConstructorParams.kt -------------------------------------------------------------------------------- /kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/issues/Issue182CustomCodec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/issues/Issue182CustomCodec.kt -------------------------------------------------------------------------------- /kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/issues/Issue198NoValueReceivedViaOnNext.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/issues/Issue198NoValueReceivedViaOnNext.kt -------------------------------------------------------------------------------- /kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/issues/Issue34FindOneAndUpdateOrReplaceOrDeleteCouldReturnNull.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/issues/Issue34FindOneAndUpdateOrReplaceOrDeleteCouldReturnNull.kt -------------------------------------------------------------------------------- /kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/issues/Issue390SetToWithEnumSerialName.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/issues/Issue390SetToWithEnumSerialName.kt -------------------------------------------------------------------------------- /kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/issues/Issue69NullOrEmptyBsonDeleteManyCrash.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-core-tests/src/main/kotlin/org/litote/kmongo/coroutine/issues/Issue69NullOrEmptyBsonDeleteManyCrash.kt -------------------------------------------------------------------------------- /kmongo-coroutine-core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-core/pom.xml -------------------------------------------------------------------------------- /kmongo-coroutine-core/src/main/kotlin/org/litote/kmongo/coroutine/CoroutineAggregatePublisher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-core/src/main/kotlin/org/litote/kmongo/coroutine/CoroutineAggregatePublisher.kt -------------------------------------------------------------------------------- /kmongo-coroutine-core/src/main/kotlin/org/litote/kmongo/coroutine/CoroutineChangeStreamPublisher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-core/src/main/kotlin/org/litote/kmongo/coroutine/CoroutineChangeStreamPublisher.kt -------------------------------------------------------------------------------- /kmongo-coroutine-core/src/main/kotlin/org/litote/kmongo/coroutine/CoroutineClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-core/src/main/kotlin/org/litote/kmongo/coroutine/CoroutineClient.kt -------------------------------------------------------------------------------- /kmongo-coroutine-core/src/main/kotlin/org/litote/kmongo/coroutine/CoroutineClientSessions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-core/src/main/kotlin/org/litote/kmongo/coroutine/CoroutineClientSessions.kt -------------------------------------------------------------------------------- /kmongo-coroutine-core/src/main/kotlin/org/litote/kmongo/coroutine/CoroutineCollection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-core/src/main/kotlin/org/litote/kmongo/coroutine/CoroutineCollection.kt -------------------------------------------------------------------------------- /kmongo-coroutine-core/src/main/kotlin/org/litote/kmongo/coroutine/CoroutineDatabase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-core/src/main/kotlin/org/litote/kmongo/coroutine/CoroutineDatabase.kt -------------------------------------------------------------------------------- /kmongo-coroutine-core/src/main/kotlin/org/litote/kmongo/coroutine/CoroutineDistinctPublisher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-core/src/main/kotlin/org/litote/kmongo/coroutine/CoroutineDistinctPublisher.kt -------------------------------------------------------------------------------- /kmongo-coroutine-core/src/main/kotlin/org/litote/kmongo/coroutine/CoroutineFindPublisher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-core/src/main/kotlin/org/litote/kmongo/coroutine/CoroutineFindPublisher.kt -------------------------------------------------------------------------------- /kmongo-coroutine-core/src/main/kotlin/org/litote/kmongo/coroutine/CoroutineListCollectionsPublisher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-core/src/main/kotlin/org/litote/kmongo/coroutine/CoroutineListCollectionsPublisher.kt -------------------------------------------------------------------------------- /kmongo-coroutine-core/src/main/kotlin/org/litote/kmongo/coroutine/CoroutineListIndexesPublisher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-core/src/main/kotlin/org/litote/kmongo/coroutine/CoroutineListIndexesPublisher.kt -------------------------------------------------------------------------------- /kmongo-coroutine-core/src/main/kotlin/org/litote/kmongo/coroutine/CoroutineMapReducePublisher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-core/src/main/kotlin/org/litote/kmongo/coroutine/CoroutineMapReducePublisher.kt -------------------------------------------------------------------------------- /kmongo-coroutine-core/src/main/kotlin/org/litote/kmongo/coroutine/CoroutinePublisher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-core/src/main/kotlin/org/litote/kmongo/coroutine/CoroutinePublisher.kt -------------------------------------------------------------------------------- /kmongo-coroutine-core/src/main/kotlin/org/litote/kmongo/coroutine/Coroutines.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-core/src/main/kotlin/org/litote/kmongo/coroutine/Coroutines.kt -------------------------------------------------------------------------------- /kmongo-coroutine-native/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-native/pom.xml -------------------------------------------------------------------------------- /kmongo-coroutine-serialization/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-serialization/pom.xml -------------------------------------------------------------------------------- /kmongo-coroutine-serialization/src/test/kotlin/Issue228WrappedObjectId.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-serialization/src/test/kotlin/Issue228WrappedObjectId.kt -------------------------------------------------------------------------------- /kmongo-coroutine-serialization/src/test/kotlin/Issue247SealedClassInsertMany.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-serialization/src/test/kotlin/Issue247SealedClassInsertMany.kt -------------------------------------------------------------------------------- /kmongo-coroutine-serialization/src/test/kotlin/Issue248ContainerWithSimplePolymorphism.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-serialization/src/test/kotlin/Issue248ContainerWithSimplePolymorphism.kt -------------------------------------------------------------------------------- /kmongo-coroutine-serialization/src/test/kotlin/Issue248PolymorphismWithInstant.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-serialization/src/test/kotlin/Issue248PolymorphismWithInstant.kt -------------------------------------------------------------------------------- /kmongo-coroutine-serialization/src/test/kotlin/Issue248SimplePolymorphism.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine-serialization/src/test/kotlin/Issue248SimplePolymorphism.kt -------------------------------------------------------------------------------- /kmongo-coroutine/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coroutine/pom.xml -------------------------------------------------------------------------------- /kmongo-coverage/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-coverage/pom.xml -------------------------------------------------------------------------------- /kmongo-data/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-data/pom.xml -------------------------------------------------------------------------------- /kmongo-data/src/main/kotlin/org/litote/kmongo/Data.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-data/src/main/kotlin/org/litote/kmongo/Data.kt -------------------------------------------------------------------------------- /kmongo-data/src/main/kotlin/org/litote/kmongo/DataRegistry.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-data/src/main/kotlin/org/litote/kmongo/DataRegistry.kt -------------------------------------------------------------------------------- /kmongo-dokka/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-dokka/pom.xml -------------------------------------------------------------------------------- /kmongo-flapdoodle/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-flapdoodle/pom.xml -------------------------------------------------------------------------------- /kmongo-flapdoodle/src/main/kotlin/org/litote/kmongo/EmbeddedMongo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-flapdoodle/src/main/kotlin/org/litote/kmongo/EmbeddedMongo.kt -------------------------------------------------------------------------------- /kmongo-flapdoodle/src/main/kotlin/org/litote/kmongo/EmbeddedMongoLog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-flapdoodle/src/main/kotlin/org/litote/kmongo/EmbeddedMongoLog.kt -------------------------------------------------------------------------------- /kmongo-flapdoodle/src/main/kotlin/org/litote/kmongo/KFlapdoodle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-flapdoodle/src/main/kotlin/org/litote/kmongo/KFlapdoodle.kt -------------------------------------------------------------------------------- /kmongo-flapdoodle/src/main/kotlin/org/litote/kmongo/KFlapdoodleConfiguration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-flapdoodle/src/main/kotlin/org/litote/kmongo/KFlapdoodleConfiguration.kt -------------------------------------------------------------------------------- /kmongo-flapdoodle/src/main/kotlin/org/litote/kmongo/KFlapdoodleRule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-flapdoodle/src/main/kotlin/org/litote/kmongo/KFlapdoodleRule.kt -------------------------------------------------------------------------------- /kmongo-flapdoodle/src/main/kotlin/org/litote/kmongo/ReplicaSetEmbeddedMongo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-flapdoodle/src/main/kotlin/org/litote/kmongo/ReplicaSetEmbeddedMongo.kt -------------------------------------------------------------------------------- /kmongo-flapdoodle/src/main/kotlin/org/litote/kmongo/StandaloneEmbeddedMongo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-flapdoodle/src/main/kotlin/org/litote/kmongo/StandaloneEmbeddedMongo.kt -------------------------------------------------------------------------------- /kmongo-flapdoodle/src/main/kotlin/org/litote/kmongo/coroutine/CoroutineFlapdoodleRule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-flapdoodle/src/main/kotlin/org/litote/kmongo/coroutine/CoroutineFlapdoodleRule.kt -------------------------------------------------------------------------------- /kmongo-flapdoodle/src/main/kotlin/org/litote/kmongo/reactivestreams/KFlapdoodleReactiveStreams.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-flapdoodle/src/main/kotlin/org/litote/kmongo/reactivestreams/KFlapdoodleReactiveStreams.kt -------------------------------------------------------------------------------- /kmongo-flapdoodle/src/main/kotlin/org/litote/kmongo/reactivestreams/KFlapdoodleReactiveStreamsConfiguration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-flapdoodle/src/main/kotlin/org/litote/kmongo/reactivestreams/KFlapdoodleReactiveStreamsConfiguration.kt -------------------------------------------------------------------------------- /kmongo-flapdoodle/src/main/kotlin/org/litote/kmongo/reactivestreams/ReactiveStreamsFlapdoodleRule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-flapdoodle/src/main/kotlin/org/litote/kmongo/reactivestreams/ReactiveStreamsFlapdoodleRule.kt -------------------------------------------------------------------------------- /kmongo-flapdoodle/src/main/kotlin/org/litote/kmongo/reactivestreams/ReactiveStreamsTestContext.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-flapdoodle/src/main/kotlin/org/litote/kmongo/reactivestreams/ReactiveStreamsTestContext.kt -------------------------------------------------------------------------------- /kmongo-flapdoodle/src/main/kotlin/org/litote/kmongo/reactivestreams/SimpleSubscriber.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-flapdoodle/src/main/kotlin/org/litote/kmongo/reactivestreams/SimpleSubscriber.kt -------------------------------------------------------------------------------- /kmongo-flapdoodle/src/main/kotlin/org/litote/kmongo/reactor/ReactorFlapdoodleRule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-flapdoodle/src/main/kotlin/org/litote/kmongo/reactor/ReactorFlapdoodleRule.kt -------------------------------------------------------------------------------- /kmongo-flapdoodle/src/main/kotlin/org/litote/kmongo/rxjava2/RxFlapdoodleRule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-flapdoodle/src/main/kotlin/org/litote/kmongo/rxjava2/RxFlapdoodleRule.kt -------------------------------------------------------------------------------- /kmongo-flapdoodle/src/test/kotlin/org/litote/kmongo/KFlapdoodleRuleTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-flapdoodle/src/test/kotlin/org/litote/kmongo/KFlapdoodleRuleTest.kt -------------------------------------------------------------------------------- /kmongo-flapdoodle/src/test/kotlin/org/litote/kmongo/StandaloneEmbeddedMongoTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-flapdoodle/src/test/kotlin/org/litote/kmongo/StandaloneEmbeddedMongoTest.kt -------------------------------------------------------------------------------- /kmongo-flapdoodle/src/test/kotlin/org/litote/kmongo/service/SyncMongoClientProviderService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-flapdoodle/src/test/kotlin/org/litote/kmongo/service/SyncMongoClientProviderService.kt -------------------------------------------------------------------------------- /kmongo-flapdoodle/src/test/resources/META-INF/services/org.litote.kmongo.service.MongoClientProviderService: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-flapdoodle/src/test/resources/META-INF/services/org.litote.kmongo.service.MongoClientProviderService -------------------------------------------------------------------------------- /kmongo-id-jackson/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-id-jackson/pom.xml -------------------------------------------------------------------------------- /kmongo-id-jackson/src/main/kotlin/org/litote/kmongo/id/jackson/IdJacksonModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-id-jackson/src/main/kotlin/org/litote/kmongo/id/jackson/IdJacksonModule.kt -------------------------------------------------------------------------------- /kmongo-id-jackson/src/main/kotlin/org/litote/kmongo/id/jackson/IdKeyDeserializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-id-jackson/src/main/kotlin/org/litote/kmongo/id/jackson/IdKeyDeserializer.kt -------------------------------------------------------------------------------- /kmongo-id-jackson/src/main/kotlin/org/litote/kmongo/id/jackson/IdKeySerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-id-jackson/src/main/kotlin/org/litote/kmongo/id/jackson/IdKeySerializer.kt -------------------------------------------------------------------------------- /kmongo-id-jackson/src/main/kotlin/org/litote/kmongo/id/jackson/IdToStringSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-id-jackson/src/main/kotlin/org/litote/kmongo/id/jackson/IdToStringSerializer.kt -------------------------------------------------------------------------------- /kmongo-id-jackson/src/main/kotlin/org/litote/kmongo/id/jackson/StringToIdDeserializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-id-jackson/src/main/kotlin/org/litote/kmongo/id/jackson/StringToIdDeserializer.kt -------------------------------------------------------------------------------- /kmongo-id-jackson/src/test/kotlin/org/litote/kmongo/id/jackson/IdJsonTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-id-jackson/src/test/kotlin/org/litote/kmongo/id/jackson/IdJsonTest.kt -------------------------------------------------------------------------------- /kmongo-id-serialization/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-id-serialization/pom.xml -------------------------------------------------------------------------------- /kmongo-id-serialization/src/main/kotlin/IdModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-id-serialization/src/main/kotlin/IdModule.kt -------------------------------------------------------------------------------- /kmongo-id-serialization/src/test/kotlin/IdModuleTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-id-serialization/src/test/kotlin/IdModuleTest.kt -------------------------------------------------------------------------------- /kmongo-id/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-id/pom.xml -------------------------------------------------------------------------------- /kmongo-id/src/main/kotlin/org/litote/kmongo/Id.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-id/src/main/kotlin/org/litote/kmongo/Id.kt -------------------------------------------------------------------------------- /kmongo-id/src/main/kotlin/org/litote/kmongo/id/IdGenerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-id/src/main/kotlin/org/litote/kmongo/id/IdGenerator.kt -------------------------------------------------------------------------------- /kmongo-id/src/main/kotlin/org/litote/kmongo/id/IdGeneratorProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-id/src/main/kotlin/org/litote/kmongo/id/IdGeneratorProvider.kt -------------------------------------------------------------------------------- /kmongo-id/src/main/kotlin/org/litote/kmongo/id/StringId.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-id/src/main/kotlin/org/litote/kmongo/id/StringId.kt -------------------------------------------------------------------------------- /kmongo-id/src/main/kotlin/org/litote/kmongo/id/UUIDStringIdGenerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-id/src/main/kotlin/org/litote/kmongo/id/UUIDStringIdGenerator.kt -------------------------------------------------------------------------------- /kmongo-id/src/main/kotlin/org/litote/kmongo/id/UUIDStringIdGeneratorProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-id/src/main/kotlin/org/litote/kmongo/id/UUIDStringIdGeneratorProvider.kt -------------------------------------------------------------------------------- /kmongo-id/src/main/kotlin/org/litote/kmongo/ids.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-id/src/main/kotlin/org/litote/kmongo/ids.kt -------------------------------------------------------------------------------- /kmongo-id/src/main/resources/META-INF/services/org.litote.kmongo.id.IdGeneratorProvider: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-id/src/main/resources/META-INF/services/org.litote.kmongo.id.IdGeneratorProvider -------------------------------------------------------------------------------- /kmongo-id/src/test/kotlin/IdTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-id/src/test/kotlin/IdTest.kt -------------------------------------------------------------------------------- /kmongo-jackson-mapping/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-jackson-mapping/pom.xml -------------------------------------------------------------------------------- /kmongo-jackson-mapping/src/main/kotlin/org/litote/kmongo/jackson/BsonModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-jackson-mapping/src/main/kotlin/org/litote/kmongo/jackson/BsonModule.kt -------------------------------------------------------------------------------- /kmongo-jackson-mapping/src/main/kotlin/org/litote/kmongo/jackson/ExtendedJsonModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-jackson-mapping/src/main/kotlin/org/litote/kmongo/jackson/ExtendedJsonModule.kt -------------------------------------------------------------------------------- /kmongo-jackson-mapping/src/main/kotlin/org/litote/kmongo/jackson/FilterIdModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-jackson-mapping/src/main/kotlin/org/litote/kmongo/jackson/FilterIdModule.kt -------------------------------------------------------------------------------- /kmongo-jackson-mapping/src/main/kotlin/org/litote/kmongo/jackson/JacksonClassMappingTypeService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-jackson-mapping/src/main/kotlin/org/litote/kmongo/jackson/JacksonClassMappingTypeService.kt -------------------------------------------------------------------------------- /kmongo-jackson-mapping/src/main/kotlin/org/litote/kmongo/jackson/JacksonCodec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-jackson-mapping/src/main/kotlin/org/litote/kmongo/jackson/JacksonCodec.kt -------------------------------------------------------------------------------- /kmongo-jackson-mapping/src/main/kotlin/org/litote/kmongo/jackson/JacksonCodecProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-jackson-mapping/src/main/kotlin/org/litote/kmongo/jackson/JacksonCodecProvider.kt -------------------------------------------------------------------------------- /kmongo-jackson-mapping/src/main/kotlin/org/litote/kmongo/jackson/KMongoAnnotationIntrospector.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-jackson-mapping/src/main/kotlin/org/litote/kmongo/jackson/KMongoAnnotationIntrospector.kt -------------------------------------------------------------------------------- /kmongo-jackson-mapping/src/main/kotlin/org/litote/kmongo/jackson/KMongoBsonFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-jackson-mapping/src/main/kotlin/org/litote/kmongo/jackson/KMongoBsonFactory.kt -------------------------------------------------------------------------------- /kmongo-jackson-mapping/src/main/kotlin/org/litote/kmongo/jackson/ObjectMapperFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-jackson-mapping/src/main/kotlin/org/litote/kmongo/jackson/ObjectMapperFactory.kt -------------------------------------------------------------------------------- /kmongo-jackson-mapping/src/main/kotlin/org/litote/kmongo/jackson/StringDeserializationProblemHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-jackson-mapping/src/main/kotlin/org/litote/kmongo/jackson/StringDeserializationProblemHandler.kt -------------------------------------------------------------------------------- /kmongo-jackson-mapping/src/main/kotlin/org/litote/kmongo/util/KMongoConfiguration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-jackson-mapping/src/main/kotlin/org/litote/kmongo/util/KMongoConfiguration.kt -------------------------------------------------------------------------------- /kmongo-jackson-mapping/src/main/kotlin/org/litote/kmongo/util/MongoIdUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-jackson-mapping/src/main/kotlin/org/litote/kmongo/util/MongoIdUtil.kt -------------------------------------------------------------------------------- /kmongo-jackson-mapping/src/main/resources/META-INF/services/org.litote.kmongo.service.ClassMappingTypeService: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-jackson-mapping/src/main/resources/META-INF/services/org.litote.kmongo.service.ClassMappingTypeService -------------------------------------------------------------------------------- /kmongo-jackson-mapping/src/test/kotlin/org/litote/kmongo/jackson/Issue147OtherTypeSupportForBigDecimal.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-jackson-mapping/src/test/kotlin/org/litote/kmongo/jackson/Issue147OtherTypeSupportForBigDecimal.kt -------------------------------------------------------------------------------- /kmongo-jackson-mapping/src/test/kotlin/org/litote/kmongo/jackson/JacksonClassMappingTypeServiceTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-jackson-mapping/src/test/kotlin/org/litote/kmongo/jackson/JacksonClassMappingTypeServiceTest.kt -------------------------------------------------------------------------------- /kmongo-jackson-mapping/src/test/kotlin/org/litote/kmongo/jackson/ObjectMapperFactoryTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-jackson-mapping/src/test/kotlin/org/litote/kmongo/jackson/ObjectMapperFactoryTest.kt -------------------------------------------------------------------------------- /kmongo-jackson-mapping/src/test/kotlin/org/litote/kmongo/jackson/UUIDTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-jackson-mapping/src/test/kotlin/org/litote/kmongo/jackson/UUIDTest.kt -------------------------------------------------------------------------------- /kmongo-jackson-mapping/src/test/kotlin/org/litote/kmongo/util/JacksonModuleServiceLoaderTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-jackson-mapping/src/test/kotlin/org/litote/kmongo/util/JacksonModuleServiceLoaderTest.kt -------------------------------------------------------------------------------- /kmongo-jackson-mapping/src/test/kotlin/org/litote/kmongo/util/KMongoConfigurationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-jackson-mapping/src/test/kotlin/org/litote/kmongo/util/KMongoConfigurationTest.kt -------------------------------------------------------------------------------- /kmongo-jackson-mapping/src/test/kotlin/org/litote/kmongo/util/KMongoJacksonFeatureTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-jackson-mapping/src/test/kotlin/org/litote/kmongo/util/KMongoJacksonFeatureTest.kt -------------------------------------------------------------------------------- /kmongo-jackson-mapping/src/test/kotlin/org/litote/kmongo/util/MongoIdUtilTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-jackson-mapping/src/test/kotlin/org/litote/kmongo/util/MongoIdUtilTest.kt -------------------------------------------------------------------------------- /kmongo-jackson-mapping/src/test/resources/META-INF/services/org.litote.jackson.JacksonModuleServiceLoader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-jackson-mapping/src/test/resources/META-INF/services/org.litote.jackson.JacksonModuleServiceLoader -------------------------------------------------------------------------------- /kmongo-kdoc/docs/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-kdoc/docs/about.md -------------------------------------------------------------------------------- /kmongo-kdoc/docs/assets/images/benchmark1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-kdoc/docs/assets/images/benchmark1.png -------------------------------------------------------------------------------- /kmongo-kdoc/docs/assets/images/benchmark2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-kdoc/docs/assets/images/benchmark2.png -------------------------------------------------------------------------------- /kmongo-kdoc/docs/assets/images/benchmark3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-kdoc/docs/assets/images/benchmark3.png -------------------------------------------------------------------------------- /kmongo-kdoc/docs/assets/images/benchmark4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-kdoc/docs/assets/images/benchmark4.png -------------------------------------------------------------------------------- /kmongo-kdoc/docs/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-kdoc/docs/assets/images/favicon.ico -------------------------------------------------------------------------------- /kmongo-kdoc/docs/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-kdoc/docs/assets/images/favicon.png -------------------------------------------------------------------------------- /kmongo-kdoc/docs/assets/images/kmongo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-kdoc/docs/assets/images/kmongo.png -------------------------------------------------------------------------------- /kmongo-kdoc/docs/extensions-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-kdoc/docs/extensions-overview.md -------------------------------------------------------------------------------- /kmongo-kdoc/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-kdoc/docs/index.md -------------------------------------------------------------------------------- /kmongo-kdoc/docs/mongo-shell-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-kdoc/docs/mongo-shell-support.md -------------------------------------------------------------------------------- /kmongo-kdoc/docs/object-mapping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-kdoc/docs/object-mapping.md -------------------------------------------------------------------------------- /kmongo-kdoc/docs/performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-kdoc/docs/performance.md -------------------------------------------------------------------------------- /kmongo-kdoc/docs/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-kdoc/docs/quick-start.md -------------------------------------------------------------------------------- /kmongo-kdoc/docs/typed-queries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-kdoc/docs/typed-queries.md -------------------------------------------------------------------------------- /kmongo-kdoc/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-kdoc/mkdocs.yml -------------------------------------------------------------------------------- /kmongo-native-mapping/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-native-mapping/pom.xml -------------------------------------------------------------------------------- /kmongo-native-mapping/src/main/kotlin/org/bson/codecs/pojo/ClassModelBuilder2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-native-mapping/src/main/kotlin/org/bson/codecs/pojo/ClassModelBuilder2.java -------------------------------------------------------------------------------- /kmongo-native-mapping/src/main/kotlin/org/bson/codecs/pojo/Convention2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-native-mapping/src/main/kotlin/org/bson/codecs/pojo/Convention2.java -------------------------------------------------------------------------------- /kmongo-native-mapping/src/main/kotlin/org/bson/codecs/pojo/ConventionAnnotationImpl2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-native-mapping/src/main/kotlin/org/bson/codecs/pojo/ConventionAnnotationImpl2.java -------------------------------------------------------------------------------- /kmongo-native-mapping/src/main/kotlin/org/bson/codecs/pojo/ConventionDefaultsImpl2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-native-mapping/src/main/kotlin/org/bson/codecs/pojo/ConventionDefaultsImpl2.java -------------------------------------------------------------------------------- /kmongo-native-mapping/src/main/kotlin/org/bson/codecs/pojo/EmptyObjectConvention.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-native-mapping/src/main/kotlin/org/bson/codecs/pojo/EmptyObjectConvention.kt -------------------------------------------------------------------------------- /kmongo-native-mapping/src/main/kotlin/org/bson/codecs/pojo/EnumCodec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-native-mapping/src/main/kotlin/org/bson/codecs/pojo/EnumCodec.kt -------------------------------------------------------------------------------- /kmongo-native-mapping/src/main/kotlin/org/bson/codecs/pojo/JavaTimeCodecProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-native-mapping/src/main/kotlin/org/bson/codecs/pojo/JavaTimeCodecProvider.kt -------------------------------------------------------------------------------- /kmongo-native-mapping/src/main/kotlin/org/bson/codecs/pojo/KMongoAnnotationConvention.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-native-mapping/src/main/kotlin/org/bson/codecs/pojo/KMongoAnnotationConvention.kt -------------------------------------------------------------------------------- /kmongo-native-mapping/src/main/kotlin/org/bson/codecs/pojo/KMongoConvention.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-native-mapping/src/main/kotlin/org/bson/codecs/pojo/KMongoConvention.kt -------------------------------------------------------------------------------- /kmongo-native-mapping/src/main/kotlin/org/bson/codecs/pojo/KMongoPojoCodec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-native-mapping/src/main/kotlin/org/bson/codecs/pojo/KMongoPojoCodec.kt -------------------------------------------------------------------------------- /kmongo-native-mapping/src/main/kotlin/org/bson/codecs/pojo/KMongoPojoCodecProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-native-mapping/src/main/kotlin/org/bson/codecs/pojo/KMongoPojoCodecProvider.kt -------------------------------------------------------------------------------- /kmongo-native-mapping/src/main/kotlin/org/bson/codecs/pojo/KMongoPojoCodecService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-native-mapping/src/main/kotlin/org/bson/codecs/pojo/KMongoPojoCodecService.kt -------------------------------------------------------------------------------- /kmongo-native-mapping/src/main/kotlin/org/bson/codecs/pojo/KeyObjectMapPropertyCodecProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-native-mapping/src/main/kotlin/org/bson/codecs/pojo/KeyObjectMapPropertyCodecProvider.kt -------------------------------------------------------------------------------- /kmongo-native-mapping/src/main/kotlin/org/bson/codecs/pojo/KotlinInstanceCreator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-native-mapping/src/main/kotlin/org/bson/codecs/pojo/KotlinInstanceCreator.kt -------------------------------------------------------------------------------- /kmongo-native-mapping/src/main/kotlin/org/bson/codecs/pojo/KotlinInstanceCreatorFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-native-mapping/src/main/kotlin/org/bson/codecs/pojo/KotlinInstanceCreatorFactory.kt -------------------------------------------------------------------------------- /kmongo-native-mapping/src/main/kotlin/org/bson/codecs/pojo/MissingKotlinParameterException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-native-mapping/src/main/kotlin/org/bson/codecs/pojo/MissingKotlinParameterException.kt -------------------------------------------------------------------------------- /kmongo-native-mapping/src/main/kotlin/org/bson/codecs/pojo/PairPropertyCodecProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-native-mapping/src/main/kotlin/org/bson/codecs/pojo/PairPropertyCodecProvider.kt -------------------------------------------------------------------------------- /kmongo-native-mapping/src/main/kotlin/org/bson/codecs/pojo/PojoBuilderHelper2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-native-mapping/src/main/kotlin/org/bson/codecs/pojo/PojoBuilderHelper2.java -------------------------------------------------------------------------------- /kmongo-native-mapping/src/main/kotlin/org/bson/codecs/pojo/PojoCodecProvider2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-native-mapping/src/main/kotlin/org/bson/codecs/pojo/PojoCodecProvider2.java -------------------------------------------------------------------------------- /kmongo-native-mapping/src/main/kotlin/org/bson/codecs/pojo/PropertyReflectionUtils2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-native-mapping/src/main/kotlin/org/bson/codecs/pojo/PropertyReflectionUtils2.java -------------------------------------------------------------------------------- /kmongo-native-mapping/src/main/kotlin/org/bson/codecs/pojo/TriplePropertyCodecProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-native-mapping/src/main/kotlin/org/bson/codecs/pojo/TriplePropertyCodecProvider.kt -------------------------------------------------------------------------------- /kmongo-native-mapping/src/main/kotlin/org/bson/codecs/pojo/UtilClassesCodecProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-native-mapping/src/main/kotlin/org/bson/codecs/pojo/UtilClassesCodecProvider.kt -------------------------------------------------------------------------------- /kmongo-native-mapping/src/main/kotlin/org/litote/kmongo/pojo/PojoClassMappingTypeService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-native-mapping/src/main/kotlin/org/litote/kmongo/pojo/PojoClassMappingTypeService.kt -------------------------------------------------------------------------------- /kmongo-native-mapping/src/main/resources/META-INF/services/org.litote.kmongo.service.ClassMappingTypeService: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-native-mapping/src/main/resources/META-INF/services/org.litote.kmongo.service.ClassMappingTypeService -------------------------------------------------------------------------------- /kmongo-native-mapping/src/test/kotlin/org/litote/kmongo/pojo/PojoClassMappingTypeServiceTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-native-mapping/src/test/kotlin/org/litote/kmongo/pojo/PojoClassMappingTypeServiceTest.kt -------------------------------------------------------------------------------- /kmongo-native/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-native/pom.xml -------------------------------------------------------------------------------- /kmongo-native/src/test/kotlin/org/litote/kmongo/PojoAnnotationsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-native/src/test/kotlin/org/litote/kmongo/PojoAnnotationsTest.kt -------------------------------------------------------------------------------- /kmongo-property/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-property/pom.xml -------------------------------------------------------------------------------- /kmongo-property/src/main/kotlin/kotlin/internal/Annotations.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-property/src/main/kotlin/kotlin/internal/Annotations.kt -------------------------------------------------------------------------------- /kmongo-property/src/main/kotlin/org/litote/kmongo/Accumulators.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-property/src/main/kotlin/org/litote/kmongo/Accumulators.kt -------------------------------------------------------------------------------- /kmongo-property/src/main/kotlin/org/litote/kmongo/Aggregates.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-property/src/main/kotlin/org/litote/kmongo/Aggregates.kt -------------------------------------------------------------------------------- /kmongo-property/src/main/kotlin/org/litote/kmongo/Documents.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-property/src/main/kotlin/org/litote/kmongo/Documents.kt -------------------------------------------------------------------------------- /kmongo-property/src/main/kotlin/org/litote/kmongo/Filters.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-property/src/main/kotlin/org/litote/kmongo/Filters.kt -------------------------------------------------------------------------------- /kmongo-property/src/main/kotlin/org/litote/kmongo/Indexes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-property/src/main/kotlin/org/litote/kmongo/Indexes.kt -------------------------------------------------------------------------------- /kmongo-property/src/main/kotlin/org/litote/kmongo/Projections.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-property/src/main/kotlin/org/litote/kmongo/Projections.kt -------------------------------------------------------------------------------- /kmongo-property/src/main/kotlin/org/litote/kmongo/Properties.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-property/src/main/kotlin/org/litote/kmongo/Properties.kt -------------------------------------------------------------------------------- /kmongo-property/src/main/kotlin/org/litote/kmongo/SetTo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-property/src/main/kotlin/org/litote/kmongo/SetTo.kt -------------------------------------------------------------------------------- /kmongo-property/src/main/kotlin/org/litote/kmongo/Sorts.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-property/src/main/kotlin/org/litote/kmongo/Sorts.kt -------------------------------------------------------------------------------- /kmongo-property/src/main/kotlin/org/litote/kmongo/UnsignedUpdates.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-property/src/main/kotlin/org/litote/kmongo/UnsignedUpdates.kt -------------------------------------------------------------------------------- /kmongo-property/src/main/kotlin/org/litote/kmongo/Updates.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-property/src/main/kotlin/org/litote/kmongo/Updates.kt -------------------------------------------------------------------------------- /kmongo-property/src/main/kotlin/org/litote/kmongo/property/KPropertyPath.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-property/src/main/kotlin/org/litote/kmongo/property/KPropertyPath.kt -------------------------------------------------------------------------------- /kmongo-property/src/test/kotlin/org/litote/kmongo/AggregatesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-property/src/test/kotlin/org/litote/kmongo/AggregatesTest.kt -------------------------------------------------------------------------------- /kmongo-property/src/test/kotlin/org/litote/kmongo/FiltersTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-property/src/test/kotlin/org/litote/kmongo/FiltersTest.kt -------------------------------------------------------------------------------- /kmongo-property/src/test/kotlin/org/litote/kmongo/MockedClassMappingTypeService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-property/src/test/kotlin/org/litote/kmongo/MockedClassMappingTypeService.kt -------------------------------------------------------------------------------- /kmongo-property/src/test/kotlin/org/litote/kmongo/ProjectionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-property/src/test/kotlin/org/litote/kmongo/ProjectionTest.kt -------------------------------------------------------------------------------- /kmongo-property/src/test/kotlin/org/litote/kmongo/Tests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-property/src/test/kotlin/org/litote/kmongo/Tests.kt -------------------------------------------------------------------------------- /kmongo-property/src/test/kotlin/org/litote/kmongo/UnsignedUpdatesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-property/src/test/kotlin/org/litote/kmongo/UnsignedUpdatesTest.kt -------------------------------------------------------------------------------- /kmongo-property/src/test/kotlin/org/litote/kmongo/UpdatesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-property/src/test/kotlin/org/litote/kmongo/UpdatesTest.kt -------------------------------------------------------------------------------- /kmongo-property/src/test/kotlin/org/litote/kmongo/issue/Issue276SubclassTypedQueryTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-property/src/test/kotlin/org/litote/kmongo/issue/Issue276SubclassTypedQueryTest.kt -------------------------------------------------------------------------------- /kmongo-property/src/test/kotlin/org/litote/kmongo/property/KPropertyPathTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-property/src/test/kotlin/org/litote/kmongo/property/KPropertyPathTest.kt -------------------------------------------------------------------------------- /kmongo-property/src/test/resources/META-INF/services/org.litote.kmongo.service.ClassMappingTypeService: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-property/src/test/resources/META-INF/services/org.litote.kmongo.service.ClassMappingTypeService -------------------------------------------------------------------------------- /kmongo-reactor-core-tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-reactor-core-tests/pom.xml -------------------------------------------------------------------------------- /kmongo-reactor-core-tests/src/main/kotlin/org/litote/kmongo/reactor/AggregateTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-reactor-core-tests/src/main/kotlin/org/litote/kmongo/reactor/AggregateTest.kt -------------------------------------------------------------------------------- /kmongo-reactor-core-tests/src/main/kotlin/org/litote/kmongo/reactor/BinaryTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-reactor-core-tests/src/main/kotlin/org/litote/kmongo/reactor/BinaryTest.kt -------------------------------------------------------------------------------- /kmongo-reactor-core-tests/src/main/kotlin/org/litote/kmongo/reactor/CommandTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-reactor-core-tests/src/main/kotlin/org/litote/kmongo/reactor/CommandTest.kt -------------------------------------------------------------------------------- /kmongo-reactor-core-tests/src/main/kotlin/org/litote/kmongo/reactor/CountTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-reactor-core-tests/src/main/kotlin/org/litote/kmongo/reactor/CountTest.kt -------------------------------------------------------------------------------- /kmongo-reactor-core-tests/src/main/kotlin/org/litote/kmongo/reactor/DeleteTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-reactor-core-tests/src/main/kotlin/org/litote/kmongo/reactor/DeleteTest.kt -------------------------------------------------------------------------------- /kmongo-reactor-core-tests/src/main/kotlin/org/litote/kmongo/reactor/DistinctTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-reactor-core-tests/src/main/kotlin/org/litote/kmongo/reactor/DistinctTest.kt -------------------------------------------------------------------------------- /kmongo-reactor-core-tests/src/main/kotlin/org/litote/kmongo/reactor/FindOneAndModifyTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-reactor-core-tests/src/main/kotlin/org/litote/kmongo/reactor/FindOneAndModifyTest.kt -------------------------------------------------------------------------------- /kmongo-reactor-core-tests/src/main/kotlin/org/litote/kmongo/reactor/FindOneTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-reactor-core-tests/src/main/kotlin/org/litote/kmongo/reactor/FindOneTest.kt -------------------------------------------------------------------------------- /kmongo-reactor-core-tests/src/main/kotlin/org/litote/kmongo/reactor/InsertTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-reactor-core-tests/src/main/kotlin/org/litote/kmongo/reactor/InsertTest.kt -------------------------------------------------------------------------------- /kmongo-reactor-core-tests/src/main/kotlin/org/litote/kmongo/reactor/KMongoReactiveStreamsReactorBaseTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-reactor-core-tests/src/main/kotlin/org/litote/kmongo/reactor/KMongoReactiveStreamsReactorBaseTest.kt -------------------------------------------------------------------------------- /kmongo-reactor-core-tests/src/main/kotlin/org/litote/kmongo/reactor/KMongoReactorBaseTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-reactor-core-tests/src/main/kotlin/org/litote/kmongo/reactor/KMongoReactorBaseTest.kt -------------------------------------------------------------------------------- /kmongo-reactor-core-tests/src/main/kotlin/org/litote/kmongo/reactor/ReactiveStreamsAggregateTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-reactor-core-tests/src/main/kotlin/org/litote/kmongo/reactor/ReactiveStreamsAggregateTest.kt -------------------------------------------------------------------------------- /kmongo-reactor-core-tests/src/main/kotlin/org/litote/kmongo/reactor/ReactiveStreamsBinaryTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-reactor-core-tests/src/main/kotlin/org/litote/kmongo/reactor/ReactiveStreamsBinaryTest.kt -------------------------------------------------------------------------------- /kmongo-reactor-core-tests/src/main/kotlin/org/litote/kmongo/reactor/ReactiveStreamsCommandTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-reactor-core-tests/src/main/kotlin/org/litote/kmongo/reactor/ReactiveStreamsCommandTest.kt -------------------------------------------------------------------------------- /kmongo-reactor-core-tests/src/main/kotlin/org/litote/kmongo/reactor/ReactiveStreamsCountTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-reactor-core-tests/src/main/kotlin/org/litote/kmongo/reactor/ReactiveStreamsCountTest.kt -------------------------------------------------------------------------------- /kmongo-reactor-core-tests/src/main/kotlin/org/litote/kmongo/reactor/ReactiveStreamsDeleteTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-reactor-core-tests/src/main/kotlin/org/litote/kmongo/reactor/ReactiveStreamsDeleteTest.kt -------------------------------------------------------------------------------- /kmongo-reactor-core-tests/src/main/kotlin/org/litote/kmongo/reactor/ReactiveStreamsDistinctTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-reactor-core-tests/src/main/kotlin/org/litote/kmongo/reactor/ReactiveStreamsDistinctTest.kt -------------------------------------------------------------------------------- /kmongo-reactor-core-tests/src/main/kotlin/org/litote/kmongo/reactor/ReactiveStreamsFindOneAndModifyTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-reactor-core-tests/src/main/kotlin/org/litote/kmongo/reactor/ReactiveStreamsFindOneAndModifyTest.kt -------------------------------------------------------------------------------- /kmongo-reactor-core-tests/src/main/kotlin/org/litote/kmongo/reactor/ReactiveStreamsFindOneTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-reactor-core-tests/src/main/kotlin/org/litote/kmongo/reactor/ReactiveStreamsFindOneTest.kt -------------------------------------------------------------------------------- /kmongo-reactor-core-tests/src/main/kotlin/org/litote/kmongo/reactor/ReactiveStreamsReplaceTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-reactor-core-tests/src/main/kotlin/org/litote/kmongo/reactor/ReactiveStreamsReplaceTest.kt -------------------------------------------------------------------------------- /kmongo-reactor-core-tests/src/main/kotlin/org/litote/kmongo/reactor/ReactiveStreamsUpdateTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-reactor-core-tests/src/main/kotlin/org/litote/kmongo/reactor/ReactiveStreamsUpdateTest.kt -------------------------------------------------------------------------------- /kmongo-reactor-core-tests/src/main/kotlin/org/litote/kmongo/reactor/ReplaceTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-reactor-core-tests/src/main/kotlin/org/litote/kmongo/reactor/ReplaceTest.kt -------------------------------------------------------------------------------- /kmongo-reactor-core-tests/src/main/kotlin/org/litote/kmongo/reactor/UpdateTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-reactor-core-tests/src/main/kotlin/org/litote/kmongo/reactor/UpdateTest.kt -------------------------------------------------------------------------------- /kmongo-reactor-core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-reactor-core/pom.xml -------------------------------------------------------------------------------- /kmongo-reactor-core/src/main/kotlin/org/litote/kmongo/reactor/Publishers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-reactor-core/src/main/kotlin/org/litote/kmongo/reactor/Publishers.kt -------------------------------------------------------------------------------- /kmongo-reactor-core/src/main/kotlin/org/litote/kmongo/reactor/ReactiveStreamsMongoCollections.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-reactor-core/src/main/kotlin/org/litote/kmongo/reactor/ReactiveStreamsMongoCollections.kt -------------------------------------------------------------------------------- /kmongo-reactor-core/src/main/kotlin/org/litote/kmongo/reactor/ReactiveStreamsMongoDatabases.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-reactor-core/src/main/kotlin/org/litote/kmongo/reactor/ReactiveStreamsMongoDatabases.kt -------------------------------------------------------------------------------- /kmongo-reactor-core/src/main/kotlin/org/litote/kmongo/reactor/ReactorMongoCollections.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-reactor-core/src/main/kotlin/org/litote/kmongo/reactor/ReactorMongoCollections.kt -------------------------------------------------------------------------------- /kmongo-reactor-core/src/main/kotlin/org/litote/kmongo/reactor/ReactorMongoDatabases.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-reactor-core/src/main/kotlin/org/litote/kmongo/reactor/ReactorMongoDatabases.kt -------------------------------------------------------------------------------- /kmongo-reactor-core/src/main/kotlin/org/litote/kmongo/reactor/Reactors.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-reactor-core/src/main/kotlin/org/litote/kmongo/reactor/Reactors.kt -------------------------------------------------------------------------------- /kmongo-reactor-native/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-reactor-native/pom.xml -------------------------------------------------------------------------------- /kmongo-reactor-serialization/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-reactor-serialization/pom.xml -------------------------------------------------------------------------------- /kmongo-reactor/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-reactor/pom.xml -------------------------------------------------------------------------------- /kmongo-rxjava2-core-tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-rxjava2-core-tests/pom.xml -------------------------------------------------------------------------------- /kmongo-rxjava2-core-tests/src/main/kotlin/org/litote/kmongo/rxjava2/AggregateTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-rxjava2-core-tests/src/main/kotlin/org/litote/kmongo/rxjava2/AggregateTest.kt -------------------------------------------------------------------------------- /kmongo-rxjava2-core-tests/src/main/kotlin/org/litote/kmongo/rxjava2/BinaryTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-rxjava2-core-tests/src/main/kotlin/org/litote/kmongo/rxjava2/BinaryTest.kt -------------------------------------------------------------------------------- /kmongo-rxjava2-core-tests/src/main/kotlin/org/litote/kmongo/rxjava2/CommandTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-rxjava2-core-tests/src/main/kotlin/org/litote/kmongo/rxjava2/CommandTest.kt -------------------------------------------------------------------------------- /kmongo-rxjava2-core-tests/src/main/kotlin/org/litote/kmongo/rxjava2/CountTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-rxjava2-core-tests/src/main/kotlin/org/litote/kmongo/rxjava2/CountTest.kt -------------------------------------------------------------------------------- /kmongo-rxjava2-core-tests/src/main/kotlin/org/litote/kmongo/rxjava2/DeleteTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-rxjava2-core-tests/src/main/kotlin/org/litote/kmongo/rxjava2/DeleteTest.kt -------------------------------------------------------------------------------- /kmongo-rxjava2-core-tests/src/main/kotlin/org/litote/kmongo/rxjava2/DistinctTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-rxjava2-core-tests/src/main/kotlin/org/litote/kmongo/rxjava2/DistinctTest.kt -------------------------------------------------------------------------------- /kmongo-rxjava2-core-tests/src/main/kotlin/org/litote/kmongo/rxjava2/FindOneAndModifyTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-rxjava2-core-tests/src/main/kotlin/org/litote/kmongo/rxjava2/FindOneAndModifyTest.kt -------------------------------------------------------------------------------- /kmongo-rxjava2-core-tests/src/main/kotlin/org/litote/kmongo/rxjava2/FindOneTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-rxjava2-core-tests/src/main/kotlin/org/litote/kmongo/rxjava2/FindOneTest.kt -------------------------------------------------------------------------------- /kmongo-rxjava2-core-tests/src/main/kotlin/org/litote/kmongo/rxjava2/KMongoReactiveStreamsRxBaseTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-rxjava2-core-tests/src/main/kotlin/org/litote/kmongo/rxjava2/KMongoReactiveStreamsRxBaseTest.kt -------------------------------------------------------------------------------- /kmongo-rxjava2-core-tests/src/main/kotlin/org/litote/kmongo/rxjava2/KMongoRxBaseTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-rxjava2-core-tests/src/main/kotlin/org/litote/kmongo/rxjava2/KMongoRxBaseTest.kt -------------------------------------------------------------------------------- /kmongo-rxjava2-core-tests/src/main/kotlin/org/litote/kmongo/rxjava2/ReactiveStreamsAggregateTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-rxjava2-core-tests/src/main/kotlin/org/litote/kmongo/rxjava2/ReactiveStreamsAggregateTest.kt -------------------------------------------------------------------------------- /kmongo-rxjava2-core-tests/src/main/kotlin/org/litote/kmongo/rxjava2/ReactiveStreamsBinaryTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-rxjava2-core-tests/src/main/kotlin/org/litote/kmongo/rxjava2/ReactiveStreamsBinaryTest.kt -------------------------------------------------------------------------------- /kmongo-rxjava2-core-tests/src/main/kotlin/org/litote/kmongo/rxjava2/ReactiveStreamsCommandTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-rxjava2-core-tests/src/main/kotlin/org/litote/kmongo/rxjava2/ReactiveStreamsCommandTest.kt -------------------------------------------------------------------------------- /kmongo-rxjava2-core-tests/src/main/kotlin/org/litote/kmongo/rxjava2/ReactiveStreamsCountTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-rxjava2-core-tests/src/main/kotlin/org/litote/kmongo/rxjava2/ReactiveStreamsCountTest.kt -------------------------------------------------------------------------------- /kmongo-rxjava2-core-tests/src/main/kotlin/org/litote/kmongo/rxjava2/ReactiveStreamsDeleteTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-rxjava2-core-tests/src/main/kotlin/org/litote/kmongo/rxjava2/ReactiveStreamsDeleteTest.kt -------------------------------------------------------------------------------- /kmongo-rxjava2-core-tests/src/main/kotlin/org/litote/kmongo/rxjava2/ReactiveStreamsDistinctTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-rxjava2-core-tests/src/main/kotlin/org/litote/kmongo/rxjava2/ReactiveStreamsDistinctTest.kt -------------------------------------------------------------------------------- /kmongo-rxjava2-core-tests/src/main/kotlin/org/litote/kmongo/rxjava2/ReactiveStreamsFindOneAndModifyTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-rxjava2-core-tests/src/main/kotlin/org/litote/kmongo/rxjava2/ReactiveStreamsFindOneAndModifyTest.kt -------------------------------------------------------------------------------- /kmongo-rxjava2-core-tests/src/main/kotlin/org/litote/kmongo/rxjava2/ReactiveStreamsFindOneTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-rxjava2-core-tests/src/main/kotlin/org/litote/kmongo/rxjava2/ReactiveStreamsFindOneTest.kt -------------------------------------------------------------------------------- /kmongo-rxjava2-core-tests/src/main/kotlin/org/litote/kmongo/rxjava2/ReactiveStreamsReplaceTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-rxjava2-core-tests/src/main/kotlin/org/litote/kmongo/rxjava2/ReactiveStreamsReplaceTest.kt -------------------------------------------------------------------------------- /kmongo-rxjava2-core-tests/src/main/kotlin/org/litote/kmongo/rxjava2/ReactiveStreamsUpdateTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-rxjava2-core-tests/src/main/kotlin/org/litote/kmongo/rxjava2/ReactiveStreamsUpdateTest.kt -------------------------------------------------------------------------------- /kmongo-rxjava2-core-tests/src/main/kotlin/org/litote/kmongo/rxjava2/ReplaceTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-rxjava2-core-tests/src/main/kotlin/org/litote/kmongo/rxjava2/ReplaceTest.kt -------------------------------------------------------------------------------- /kmongo-rxjava2-core-tests/src/main/kotlin/org/litote/kmongo/rxjava2/UpdateTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-rxjava2-core-tests/src/main/kotlin/org/litote/kmongo/rxjava2/UpdateTest.kt -------------------------------------------------------------------------------- /kmongo-rxjava2-core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-rxjava2-core/pom.xml -------------------------------------------------------------------------------- /kmongo-rxjava2-core/src/main/kotlin/org/litote/kmongo/rxjava2/Publishers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-rxjava2-core/src/main/kotlin/org/litote/kmongo/rxjava2/Publishers.kt -------------------------------------------------------------------------------- /kmongo-rxjava2-core/src/main/kotlin/org/litote/kmongo/rxjava2/ReactiveStreamsMongoCollections.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-rxjava2-core/src/main/kotlin/org/litote/kmongo/rxjava2/ReactiveStreamsMongoCollections.kt -------------------------------------------------------------------------------- /kmongo-rxjava2-core/src/main/kotlin/org/litote/kmongo/rxjava2/ReactiveStreamsMongoDatabases.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-rxjava2-core/src/main/kotlin/org/litote/kmongo/rxjava2/ReactiveStreamsMongoDatabases.kt -------------------------------------------------------------------------------- /kmongo-rxjava2-core/src/main/kotlin/org/litote/kmongo/rxjava2/RxJavas.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-rxjava2-core/src/main/kotlin/org/litote/kmongo/rxjava2/RxJavas.kt -------------------------------------------------------------------------------- /kmongo-rxjava2-native/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-rxjava2-native/pom.xml -------------------------------------------------------------------------------- /kmongo-rxjava2-serialization/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-rxjava2-serialization/pom.xml -------------------------------------------------------------------------------- /kmongo-rxjava2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-rxjava2/pom.xml -------------------------------------------------------------------------------- /kmongo-serialization-mapping/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-serialization-mapping/pom.xml -------------------------------------------------------------------------------- /kmongo-serialization-mapping/src/main/kotlin/IdController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-serialization-mapping/src/main/kotlin/IdController.kt -------------------------------------------------------------------------------- /kmongo-serialization-mapping/src/main/kotlin/KMongoSerializationRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-serialization-mapping/src/main/kotlin/KMongoSerializationRepository.kt -------------------------------------------------------------------------------- /kmongo-serialization-mapping/src/main/kotlin/Properties.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-serialization-mapping/src/main/kotlin/Properties.kt -------------------------------------------------------------------------------- /kmongo-serialization-mapping/src/main/kotlin/SerializationClassMappingTypeService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-serialization-mapping/src/main/kotlin/SerializationClassMappingTypeService.kt -------------------------------------------------------------------------------- /kmongo-serialization-mapping/src/main/kotlin/SerializationCodec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-serialization-mapping/src/main/kotlin/SerializationCodec.kt -------------------------------------------------------------------------------- /kmongo-serialization-mapping/src/main/kotlin/SerializationCodecRegistry.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-serialization-mapping/src/main/kotlin/SerializationCodecRegistry.kt -------------------------------------------------------------------------------- /kmongo-serialization-mapping/src/main/kotlin/Serializers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-serialization-mapping/src/main/kotlin/Serializers.kt -------------------------------------------------------------------------------- /kmongo-serialization-mapping/src/main/resources/META-INF/services/org.litote.kmongo.service.ClassMappingTypeService: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-serialization-mapping/src/main/resources/META-INF/services/org.litote.kmongo.service.ClassMappingTypeService -------------------------------------------------------------------------------- /kmongo-serialization-mapping/src/test/kotlin/ExternalSerializerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-serialization-mapping/src/test/kotlin/ExternalSerializerTest.kt -------------------------------------------------------------------------------- /kmongo-serialization-mapping/src/test/kotlin/SerializationClassMappingTypeServiceTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-serialization-mapping/src/test/kotlin/SerializationClassMappingTypeServiceTest.kt -------------------------------------------------------------------------------- /kmongo-serialization-mapping/src/test/kotlin/SerializationCodecTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-serialization-mapping/src/test/kotlin/SerializationCodecTest.kt -------------------------------------------------------------------------------- /kmongo-serialization-mapping/src/test/kotlin/TemporalSerializerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-serialization-mapping/src/test/kotlin/TemporalSerializerTest.kt -------------------------------------------------------------------------------- /kmongo-serialization/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-serialization/pom.xml -------------------------------------------------------------------------------- /kmongo-serialization/src/test/kotlin/Issue167TransientNotWorking.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-serialization/src/test/kotlin/Issue167TransientNotWorking.kt -------------------------------------------------------------------------------- /kmongo-serialization/src/test/kotlin/Issue218ModuleId.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-serialization/src/test/kotlin/Issue218ModuleId.kt -------------------------------------------------------------------------------- /kmongo-serialization/src/test/kotlin/Issue229SealedClass.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-serialization/src/test/kotlin/Issue229SealedClass.kt -------------------------------------------------------------------------------- /kmongo-serialization/src/test/kotlin/Issue237CustomSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-serialization/src/test/kotlin/Issue237CustomSerializer.kt -------------------------------------------------------------------------------- /kmongo-serialization/src/test/kotlin/Issue247SealedClassInsertMany.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-serialization/src/test/kotlin/Issue247SealedClassInsertMany.kt -------------------------------------------------------------------------------- /kmongo-serialization/src/test/kotlin/Issue248PolymorphismWithInstant.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-serialization/src/test/kotlin/Issue248PolymorphismWithInstant.kt -------------------------------------------------------------------------------- /kmongo-serialization/src/test/kotlin/Issue250SaveCreatesAnOtherCopy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-serialization/src/test/kotlin/Issue250SaveCreatesAnOtherCopy.kt -------------------------------------------------------------------------------- /kmongo-serialization/src/test/kotlin/Issue268ObjectIdNotProperlyDeserialized.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-serialization/src/test/kotlin/Issue268ObjectIdNotProperlyDeserialized.kt -------------------------------------------------------------------------------- /kmongo-serialization/src/test/kotlin/Issue281Projection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-serialization/src/test/kotlin/Issue281Projection.kt -------------------------------------------------------------------------------- /kmongo-serialization/src/test/kotlin/Issue287UUID.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-serialization/src/test/kotlin/Issue287UUID.kt -------------------------------------------------------------------------------- /kmongo-serialization/src/test/kotlin/Issue307MaximumSerializationDepth.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-serialization/src/test/kotlin/Issue307MaximumSerializationDepth.kt -------------------------------------------------------------------------------- /kmongo-serialization/src/test/kotlin/Issue310SealedInterfaceSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-serialization/src/test/kotlin/Issue310SealedInterfaceSerializer.kt -------------------------------------------------------------------------------- /kmongo-serialization/src/test/kotlin/Issue328FieldIdQueryFilterSerialization.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-serialization/src/test/kotlin/Issue328FieldIdQueryFilterSerialization.kt -------------------------------------------------------------------------------- /kmongo-serialization/src/test/kotlin/Issue331EnumSerialName.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-serialization/src/test/kotlin/Issue331EnumSerialName.kt -------------------------------------------------------------------------------- /kmongo-serialization/src/test/kotlin/Issue343SetToWithEnumSerialName.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-serialization/src/test/kotlin/Issue343SetToWithEnumSerialName.kt -------------------------------------------------------------------------------- /kmongo-serialization/src/test/kotlin/Issue354KotlinIdFieldIgnored.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-serialization/src/test/kotlin/Issue354KotlinIdFieldIgnored.kt -------------------------------------------------------------------------------- /kmongo-serialization/src/test/kotlin/Issue365UUIDSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-serialization/src/test/kotlin/Issue365UUIDSerializer.kt -------------------------------------------------------------------------------- /kmongo-serialization/src/test/kotlin/Issue415SerialName.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-serialization/src/test/kotlin/Issue415SerialName.kt -------------------------------------------------------------------------------- /kmongo-serialization/src/test/kotlin/ObjectInPolymorphicNotWorking.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-serialization/src/test/kotlin/ObjectInPolymorphicNotWorking.kt -------------------------------------------------------------------------------- /kmongo-shared-tests-java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-shared-tests-java/pom.xml -------------------------------------------------------------------------------- /kmongo-shared-tests-java/src/main/java/org/litote/kmongo/issues/AbstractWithObjectId.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-shared-tests-java/src/main/java/org/litote/kmongo/issues/AbstractWithObjectId.java -------------------------------------------------------------------------------- /kmongo-shared-tests-java/src/main/java/org/litote/kmongo/issues/Foo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-shared-tests-java/src/main/java/org/litote/kmongo/issues/Foo.java -------------------------------------------------------------------------------- /kmongo-shared-tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-shared-tests/pom.xml -------------------------------------------------------------------------------- /kmongo-shared-tests/src/main/kotlin/org/litote/kmongo/CoreCategory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-shared-tests/src/main/kotlin/org/litote/kmongo/CoreCategory.kt -------------------------------------------------------------------------------- /kmongo-shared-tests/src/main/kotlin/org/litote/kmongo/JacksonMappingCategory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-shared-tests/src/main/kotlin/org/litote/kmongo/JacksonMappingCategory.kt -------------------------------------------------------------------------------- /kmongo-shared-tests/src/main/kotlin/org/litote/kmongo/KMongoRootTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-shared-tests/src/main/kotlin/org/litote/kmongo/KMongoRootTest.kt -------------------------------------------------------------------------------- /kmongo-shared-tests/src/main/kotlin/org/litote/kmongo/NativeMappingCategory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-shared-tests/src/main/kotlin/org/litote/kmongo/NativeMappingCategory.kt -------------------------------------------------------------------------------- /kmongo-shared-tests/src/main/kotlin/org/litote/kmongo/SerializationMappingCategory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-shared-tests/src/main/kotlin/org/litote/kmongo/SerializationMappingCategory.kt -------------------------------------------------------------------------------- /kmongo-shared-tests/src/main/kotlin/org/litote/kmongo/model/Coordinate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-shared-tests/src/main/kotlin/org/litote/kmongo/model/Coordinate.kt -------------------------------------------------------------------------------- /kmongo-shared-tests/src/main/kotlin/org/litote/kmongo/model/ExposableFriend.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-shared-tests/src/main/kotlin/org/litote/kmongo/model/ExposableFriend.kt -------------------------------------------------------------------------------- /kmongo-shared-tests/src/main/kotlin/org/litote/kmongo/model/Friend.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-shared-tests/src/main/kotlin/org/litote/kmongo/model/Friend.kt -------------------------------------------------------------------------------- /kmongo-shared-tests/src/main/kotlin/org/litote/kmongo/model/FriendContainer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-shared-tests/src/main/kotlin/org/litote/kmongo/model/FriendContainer.kt -------------------------------------------------------------------------------- /kmongo-shared/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-shared/pom.xml -------------------------------------------------------------------------------- /kmongo-shared/src/main/kotlin/org/litote/kmongo/MongoOperator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-shared/src/main/kotlin/org/litote/kmongo/MongoOperator.kt -------------------------------------------------------------------------------- /kmongo-shared/src/main/kotlin/org/litote/kmongo/MongoUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-shared/src/main/kotlin/org/litote/kmongo/MongoUtil.kt -------------------------------------------------------------------------------- /kmongo-shared/src/main/kotlin/org/litote/kmongo/SharedExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-shared/src/main/kotlin/org/litote/kmongo/SharedExtensions.kt -------------------------------------------------------------------------------- /kmongo-shared/src/main/kotlin/org/litote/kmongo/id/IdTransformer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-shared/src/main/kotlin/org/litote/kmongo/id/IdTransformer.kt -------------------------------------------------------------------------------- /kmongo-shared/src/main/kotlin/org/litote/kmongo/id/Ids.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-shared/src/main/kotlin/org/litote/kmongo/id/Ids.kt -------------------------------------------------------------------------------- /kmongo-shared/src/main/kotlin/org/litote/kmongo/id/MongoId.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-shared/src/main/kotlin/org/litote/kmongo/id/MongoId.kt -------------------------------------------------------------------------------- /kmongo-shared/src/main/kotlin/org/litote/kmongo/id/MongoProperty.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-shared/src/main/kotlin/org/litote/kmongo/id/MongoProperty.kt -------------------------------------------------------------------------------- /kmongo-shared/src/main/kotlin/org/litote/kmongo/id/ObjectIdGenerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-shared/src/main/kotlin/org/litote/kmongo/id/ObjectIdGenerator.kt -------------------------------------------------------------------------------- /kmongo-shared/src/main/kotlin/org/litote/kmongo/id/ObjectIdGeneratorProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-shared/src/main/kotlin/org/litote/kmongo/id/ObjectIdGeneratorProvider.kt -------------------------------------------------------------------------------- /kmongo-shared/src/main/kotlin/org/litote/kmongo/id/ObjectIdToStringGenerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-shared/src/main/kotlin/org/litote/kmongo/id/ObjectIdToStringGenerator.kt -------------------------------------------------------------------------------- /kmongo-shared/src/main/kotlin/org/litote/kmongo/id/WrappedObjectId.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-shared/src/main/kotlin/org/litote/kmongo/id/WrappedObjectId.kt -------------------------------------------------------------------------------- /kmongo-shared/src/main/kotlin/org/litote/kmongo/service/ClassMappingType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-shared/src/main/kotlin/org/litote/kmongo/service/ClassMappingType.kt -------------------------------------------------------------------------------- /kmongo-shared/src/main/kotlin/org/litote/kmongo/service/ClassMappingTypeService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-shared/src/main/kotlin/org/litote/kmongo/service/ClassMappingTypeService.kt -------------------------------------------------------------------------------- /kmongo-shared/src/main/kotlin/org/litote/kmongo/service/MongoClientProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-shared/src/main/kotlin/org/litote/kmongo/service/MongoClientProvider.kt -------------------------------------------------------------------------------- /kmongo-shared/src/main/kotlin/org/litote/kmongo/service/MongoClientProviderService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-shared/src/main/kotlin/org/litote/kmongo/service/MongoClientProviderService.kt -------------------------------------------------------------------------------- /kmongo-shared/src/main/kotlin/org/litote/kmongo/util/CollectionNameFormatter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-shared/src/main/kotlin/org/litote/kmongo/util/CollectionNameFormatter.kt -------------------------------------------------------------------------------- /kmongo-shared/src/main/kotlin/org/litote/kmongo/util/KMongoUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-shared/src/main/kotlin/org/litote/kmongo/util/KMongoUtil.kt -------------------------------------------------------------------------------- /kmongo-shared/src/main/kotlin/org/litote/kmongo/util/KotlinxDatetimeLoader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-shared/src/main/kotlin/org/litote/kmongo/util/KotlinxDatetimeLoader.kt -------------------------------------------------------------------------------- /kmongo-shared/src/main/kotlin/org/litote/kmongo/util/ObjectMappingConfiguration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-shared/src/main/kotlin/org/litote/kmongo/util/ObjectMappingConfiguration.kt -------------------------------------------------------------------------------- /kmongo-shared/src/main/kotlin/org/litote/kmongo/util/PatternUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-shared/src/main/kotlin/org/litote/kmongo/util/PatternUtil.kt -------------------------------------------------------------------------------- /kmongo-shared/src/main/kotlin/org/litote/kmongo/util/SimpleExpression.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-shared/src/main/kotlin/org/litote/kmongo/util/SimpleExpression.kt -------------------------------------------------------------------------------- /kmongo-shared/src/main/kotlin/org/litote/kmongo/util/SimpleProjections.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-shared/src/main/kotlin/org/litote/kmongo/util/SimpleProjections.kt -------------------------------------------------------------------------------- /kmongo-shared/src/main/kotlin/org/litote/kmongo/util/UpdateConfiguration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-shared/src/main/kotlin/org/litote/kmongo/util/UpdateConfiguration.kt -------------------------------------------------------------------------------- /kmongo-shared/src/main/resources/META-INF/services/org.litote.kmongo.id.IdGeneratorProvider: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-shared/src/main/resources/META-INF/services/org.litote.kmongo.id.IdGeneratorProvider -------------------------------------------------------------------------------- /kmongo-shared/src/test/kotlin/org/litote/kmongo/MongoOperatorTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-shared/src/test/kotlin/org/litote/kmongo/MongoOperatorTest.kt -------------------------------------------------------------------------------- /kmongo-shared/src/test/kotlin/org/litote/kmongo/service/ClassMappingTypeServiceTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-shared/src/test/kotlin/org/litote/kmongo/service/ClassMappingTypeServiceTest.kt -------------------------------------------------------------------------------- /kmongo-shared/src/test/kotlin/org/litote/kmongo/util/CollectionNameFormatterTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-shared/src/test/kotlin/org/litote/kmongo/util/CollectionNameFormatterTest.kt -------------------------------------------------------------------------------- /kmongo-shared/src/test/kotlin/org/litote/kmongo/util/KMongoUtilTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo-shared/src/test/kotlin/org/litote/kmongo/util/KMongoUtilTest.kt -------------------------------------------------------------------------------- /kmongo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo/pom.xml -------------------------------------------------------------------------------- /kmongo/src/test/kotlin/org/litote/kmongo/MappingTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo/src/test/kotlin/org/litote/kmongo/MappingTest.kt -------------------------------------------------------------------------------- /kmongo/src/test/kotlin/org/litote/kmongo/NullPropertyTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo/src/test/kotlin/org/litote/kmongo/NullPropertyTest.kt -------------------------------------------------------------------------------- /kmongo/src/test/kotlin/org/litote/kmongo/issues/Issue135JsonIdentityInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo/src/test/kotlin/org/litote/kmongo/issues/Issue135JsonIdentityInfo.kt -------------------------------------------------------------------------------- /kmongo/src/test/kotlin/org/litote/kmongo/issues/Issue136WriteObjectRef.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo/src/test/kotlin/org/litote/kmongo/issues/Issue136WriteObjectRef.kt -------------------------------------------------------------------------------- /kmongo/src/test/kotlin/org/litote/kmongo/issues/Issue247SealedClassInsertMany.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo/src/test/kotlin/org/litote/kmongo/issues/Issue247SealedClassInsertMany.kt -------------------------------------------------------------------------------- /kmongo/src/test/kotlin/org/litote/kmongo/issues/Issue268ObjectIdNotProperlyDeserialized.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo/src/test/kotlin/org/litote/kmongo/issues/Issue268ObjectIdNotProperlyDeserialized.kt -------------------------------------------------------------------------------- /kmongo/src/test/kotlin/org/litote/kmongo/issues/Issue2IdNotGeneratedForSubclass.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo/src/test/kotlin/org/litote/kmongo/issues/Issue2IdNotGeneratedForSubclass.kt -------------------------------------------------------------------------------- /kmongo/src/test/kotlin/org/litote/kmongo/issues/Issue316ReplaceNotNull.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo/src/test/kotlin/org/litote/kmongo/issues/Issue316ReplaceNotNull.kt -------------------------------------------------------------------------------- /kmongo/src/test/kotlin/org/litote/kmongo/issues/Issue35DateStoredAsTimestamp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo/src/test/kotlin/org/litote/kmongo/issues/Issue35DateStoredAsTimestamp.kt -------------------------------------------------------------------------------- /kmongo/src/test/kotlin/org/litote/kmongo/issues/Issue371CustomEnum.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo/src/test/kotlin/org/litote/kmongo/issues/Issue371CustomEnum.kt -------------------------------------------------------------------------------- /kmongo/src/test/kotlin/org/litote/kmongo/issues/Issue374IsClosed.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo/src/test/kotlin/org/litote/kmongo/issues/Issue374IsClosed.kt -------------------------------------------------------------------------------- /kmongo/src/test/kotlin/org/litote/kmongo/issues/Issue51ObjectNodeClassSerializedInArray.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo/src/test/kotlin/org/litote/kmongo/issues/Issue51ObjectNodeClassSerializedInArray.kt -------------------------------------------------------------------------------- /kmongo/src/test/kotlin/org/litote/kmongo/issues/Issue58PropertyIdHasDifferentDatatype.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo/src/test/kotlin/org/litote/kmongo/issues/Issue58PropertyIdHasDifferentDatatype.kt -------------------------------------------------------------------------------- /kmongo/src/test/kotlin/org/litote/kmongo/issues/Issue73BisIdNotDeserializedWhenUsingInterfaceAsCollectionClass.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo/src/test/kotlin/org/litote/kmongo/issues/Issue73BisIdNotDeserializedWhenUsingInterfaceAsCollectionClass.kt -------------------------------------------------------------------------------- /kmongo/src/test/kotlin/org/litote/kmongo/issues/Issue73IdNotDeserializedWhenUsingInterfaceAsCollectionClass.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo/src/test/kotlin/org/litote/kmongo/issues/Issue73IdNotDeserializedWhenUsingInterfaceAsCollectionClass.kt -------------------------------------------------------------------------------- /kmongo/src/test/kotlin/org/litote/kmongo/issues/Issue84EmbeddedDateWithInheritanceDeserializationFail.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo/src/test/kotlin/org/litote/kmongo/issues/Issue84EmbeddedDateWithInheritanceDeserializationFail.kt -------------------------------------------------------------------------------- /kmongo/src/test/kotlin/org/litote/kmongo/issues/Issue85ObjectIdIsNotProperlyDeserializedInAStringPropertyWhenPropertyIsInherited.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo/src/test/kotlin/org/litote/kmongo/issues/Issue85ObjectIdIsNotProperlyDeserializedInAStringPropertyWhenPropertyIsInherited.kt -------------------------------------------------------------------------------- /kmongo/src/test/kotlin/org/litote/kmongo/issues/TypedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/kmongo/src/test/kotlin/org/litote/kmongo/issues/TypedTest.kt -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Litote/kmongo/HEAD/pom.xml --------------------------------------------------------------------------------