All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.kapeta.spring.mongo.repository.MongoRepositoryFragment Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
/*
 * 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