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

org.teasoft.beex.mongodb.MongodbCommImpl Maven / Gradle / Ivy

/*
 * Copyright 2020-2023 the original author.All rights reserved.
 * Kingstar([email protected])
 * The license,see the LICENSE file.
 */

package org.teasoft.beex.mongodb;

import java.util.Map.Entry;
import java.util.Set;

import org.teasoft.honey.osql.mongodb.MongodbComm;

/**
 * @author Kingstar
 * @since  2.0
 */
public class MongodbCommImpl implements MongodbComm {

	@Override
	public Set> getCollectStrcut(String collectionName) {
		return MongodbUtil.getCollectStrcut(collectionName);
	}

	@Override
	public String[] getAllCollectionNames() {
		return MongodbUtil.getAllCollectionNames();
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy