Class MongoDBImpl
-
- org.apache.tapestry5.internal.mongodb.MongoDBImpl
-
- All Implemented Interfaces:
,
ThreadCleanupListener
,MongoDB
public class MongoDBImpl extends implements MongoDB, ThreadCleanupListener
Default implementation forMongoDB
-
-
Constructor Summary
Constructors Constructor Description MongoDBImpl(org.slf4j.Logger logger, MongoDBSource mongoDBSource, defaultDbName, boolean consistentRequest, boolean secureMode, dbUsername, dbPassword)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description com.mongodb.DB
getDefaultMongoDb()
Obtain a shared instance of the MongoDB database connection object connected to the default databasecom.mongodb.DB
dbname)
Obtain a shared instance of the MongoDB database connection object for the specific databasevoid
threadDidCleanup()
Invoked byPerthreadManager
service when a thread performs and end-of-request cleanup.
-
-
-
Constructor Detail
-
MongoDBImpl
public MongoDBImpl(org.slf4j.Logger logger, MongoDBSource mongoDBSource, defaultDbName, boolean consistentRequest, boolean secureMode, dbUsername, dbPassword)
-
-
Method Detail
-
getDefaultMongoDb
public com.mongodb.DB getDefaultMongoDb()
Description copied from interface:MongoDB
Obtain a shared instance of the MongoDB database connection object connected to the default database- Specified by:
getDefaultMongoDb
in interfaceMongoDB
- Returns:
- the
DB
connection object
-
getMongoDb
public com.mongodb.DB dbname)
Description copied from interface:MongoDB
Obtain a shared instance of the MongoDB database connection object for the specific database- Specified by:
getMongoDb
in interfaceMongoDB
- Parameters:
dbname
- the database name to connect to- Returns:
- the
DB
connection object
-
threadDidCleanup
public void threadDidCleanup()
Description copied from interface:ThreadCleanupListener
Invoked byPerthreadManager
service when a thread performs and end-of-request cleanup.- Specified by:
threadDidCleanup
in interfaceThreadCleanupListener
-
-