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

com.gravity9.mongocse.WorkerClusterConfig Maven / Gradle / Ivy

package com.gravity9.mongocse;

import org.bson.types.ObjectId;

public class WorkerClusterConfig {

    private ObjectId id;
    private String collection;
    private int partitions;

    public ObjectId getId() {
        return id;
    }

    public void setId(ObjectId id) {
        this.id = id;
    }

    public String getCollection() {
        return collection;
    }

    public void setCollection(String collection) {
        this.collection = collection;
    }

    public int getPartitions() {
        return partitions;
    }

    public void setPartitions(int partitions) {
        this.partitions = partitions;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy