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

net.ravendb.client.documents.operations.DetailedCollectionStatistics Maven / Gradle / Ivy

There is a newer version: 6.0.1
Show newest version
package net.ravendb.client.documents.operations;

import java.util.Map;

public class DetailedCollectionStatistics {

    private long countOfDocuments;
    private long countOfConflicts;
    private Map collections;

    public long getCountOfDocuments() {
        return countOfDocuments;
    }

    public void setCountOfDocuments(long countOfDocuments) {
        this.countOfDocuments = countOfDocuments;
    }

    public long getCountOfConflicts() {
        return countOfConflicts;
    }

    public void setCountOfConflicts(long countOfConflicts) {
        this.countOfConflicts = countOfConflicts;
    }

    public Map getCollections() {
        return collections;
    }

    public void setCollections(Map collections) {
        this.collections = collections;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy