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

org.javers.mongosupport.RequiredMongoSupportPredicate Maven / Gradle / Ivy

There is a newer version: 7.6.1
Show newest version
package org.javers.mongosupport;

import org.javers.repository.api.JaversRepository;
import java.util.function.Predicate;

public class RequiredMongoSupportPredicate implements Predicate {

    private static final String JAVERS_MONGO_REPOSITORY_CLASS_NAME = "org.javers.repository.mongo.MongoRepository";

    @Override
    public boolean test(JaversRepository repository) {
        return repository != null && repository.getClass().getName().equals(JAVERS_MONGO_REPOSITORY_CLASS_NAME);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy