Package org.apache.tapestry5.mongodb
Interface MongoDB
- 
- All Known Implementing Classes:
 MongoDBImpl
public interface MongoDB
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.mongodb.DBgetDefaultMongoDb()Obtain a shared instance of the MongoDB database connection object connected to the default databasecom.mongodb.DBgetMongoDb(String dbname)Obtain a shared instance of the MongoDB database connection object for the specific database 
 - 
 
- 
- 
Method Detail
- 
getDefaultMongoDb
com.mongodb.DB getDefaultMongoDb()
Obtain a shared instance of the MongoDB database connection object connected to the default database- Returns:
 - the 
DBconnection object 
 
- 
getMongoDb
com.mongodb.DB getMongoDb(String dbname)
Obtain a shared instance of the MongoDB database connection object for the specific database- Parameters:
 dbname- the database name to connect to- Returns:
 - the 
DBconnection object 
 
 - 
 
 -