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

com.lordofthejars.nosqlunit.mongodb.replicaset.ConfigurationDocument Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
package com.lordofthejars.nosqlunit.mongodb.replicaset;

import org.bson.Document;

public class ConfigurationDocument {

	private Document configuration;
	
	public ConfigurationDocument(Document configuration) {
		this.configuration = configuration;
	}
	
	public Document getConfiguration() {
		return this.configuration;
	}
	
	public String getReplicaSetName() {
		return (String) this.configuration.get(ReplicaSetConfigurationBuilder.ID_TAG);
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy