com.kapeta.spring.mongo.repository.MongoRepositoryFragment Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nosql-mongodb Show documentation
Show all versions of nosql-mongodb Show documentation
MongoDB support for Kapeta Spring Boot SDK
/*
* Copyright 2023 Kapeta Inc.
* SPDX-License-Identifier: MIT
*/
package com.kapeta.spring.mongo.repository;
import org.springframework.data.mongodb.core.MongoOperations;
import org.springframework.data.mongodb.repository.query.MongoEntityInformation;
import org.springframework.data.repository.NoRepositoryBean;
/**
* Part of the BaseMongoRepository setup that allows Java8 default interface methods to access these methods
* @param
*/
@NoRepositoryBean
public interface MongoRepositoryFragment {
MongoEntityInformation getMetadata();
MongoOperations getMongoOperations();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy