Package com.imaginea.mongodb.services.impl

Examples of com.imaginea.mongodb.services.impl.SystemCollectionServiceImpl.removeIndex()


            @Override
            public Object execute() throws Exception {
                SystemCollectionService systemCollectionService = new SystemCollectionServiceImpl(connectionId);
                //The collection name is obtained by removing the DB name from the namespace.
                String collectionName = nameSpace.replace(dbName + ".", "");
                return systemCollectionService.removeIndex(dbName, collectionName, indexName);
            }
        });
        return response;

    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.