Package org.apache.tapestry5.mongodb
Class MongoDBSymbols
-
- org.apache.tapestry5.mongodb.MongoDBSymbols
-
public class MongoDBSymbols extends
Configuration symbols, for use with contributions toApplicationDefaults
. AllSymbol
are relative to the usage of support within Apache Tapestry.- Since:
- 5.4
-
-
Field Summary
Fields Modifier and Type Field Description static
CONNECTIONS_PER_HOSTS
The maximum number of connections allowed per host for this Mongo instance.static
CONSISTENT_REQUEST
Where to use or not the consisten request paradigm.static
DB_PASSWORD
Password to use to connect Mongo DB.static
DB_USERNAME
Username to use to connect Mongo DB.static
DEFAULT_DB_NAME
The MongoDB default database name to connect to.static
READ_PREFERENCE
TheReadPreference
to use.static
SECURE_MODE
true
if you need to connect to Mongo DB in secure mode,false
otherwise.static
WRITE_CONCERN
TheWriteConcern
to use.
-
Constructor Summary
Constructors Constructor Description MongoDBSymbols()
-
-
-
Field Detail
-
WRITE_CONCERN
public static final WRITE_CONCERN
TheWriteConcern
to use. Default toWriteConcern.ACKNOWLEDGED
.- See Also:
- Constant Field Values
-
READ_PREFERENCE
public static final READ_PREFERENCE
TheReadPreference
to use. Default toReadPreference.primary()
.- See Also:
- Constant Field Values
-
CONNECTIONS_PER_HOSTS
public static final CONNECTIONS_PER_HOSTS
The maximum number of connections allowed per host for this Mongo instance. Defaults to 10.- See Also:
- Constant Field Values
-
DEFAULT_DB_NAME
public static final DEFAULT_DB_NAME
The MongoDB default database name to connect to. No default provided.- See Also:
- Constant Field Values
-
CONSISTENT_REQUEST
public static final CONSISTENT_REQUEST
Where to use or not the consisten request paradigm. Default to false;- See Also:
- Constant Field Values
-
SECURE_MODE
public static final SECURE_MODE
true
if you need to connect to Mongo DB in secure mode,false
otherwise. You need to set DB_USERNAME and DB_PASSWORD too if this is set totrue
. Defaults tofalse
- See Also:
- Constant Field Values
-
DB_USERNAME
public static final DB_USERNAME
Username to use to connect Mongo DB. Defaults to empty string.- See Also:
- Constant Field Values
-
DB_PASSWORD
public static final DB_PASSWORD
Password to use to connect Mongo DB. Defaults to empty string.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
MongoDBSymbols
public MongoDBSymbols()
-
-