Package org.apache.tapestry5.mongodb
Class MongoDBSymbols
- java.lang.Object
 - 
- org.apache.tapestry5.mongodb.MongoDBSymbols
 
 
- 
public class MongoDBSymbols extends Object
Configuration symbols, for use with contributions toApplicationDefaults. AllSymbolare relative to the usage of MongoDB support within Apache Tapestry.- Since:
 - 5.4
 
 
- 
- 
Field Summary
Fields Modifier and Type Field Description static StringCONNECTIONS_PER_HOSTSThe maximum number of connections allowed per host for this Mongo instance.static StringCONSISTENT_REQUESTWhere to use or not the consisten request paradigm.static StringDB_PASSWORDPassword to use to connect Mongo DB.static StringDB_USERNAMEUsername to use to connect Mongo DB.static StringDEFAULT_DB_NAMEThe MongoDB default database name to connect to.static StringREAD_PREFERENCETheReadPreferenceto use.static StringSECURE_MODEtrueif you need to connect to Mongo DB in secure mode,falseotherwise.static StringWRITE_CONCERNTheWriteConcernto use. 
- 
Constructor Summary
Constructors Constructor Description MongoDBSymbols() 
 - 
 
- 
- 
Field Detail
- 
WRITE_CONCERN
public static final String WRITE_CONCERN
TheWriteConcernto use. Default toWriteConcern.ACKNOWLEDGED.- See Also:
 - Constant Field Values
 
 
- 
READ_PREFERENCE
public static final String READ_PREFERENCE
TheReadPreferenceto use. Default toReadPreference.primary().- See Also:
 - Constant Field Values
 
 
- 
CONNECTIONS_PER_HOSTS
public static final String 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 String DEFAULT_DB_NAME
The MongoDB default database name to connect to. No default provided.- See Also:
 - Constant Field Values
 
 
- 
CONSISTENT_REQUEST
public static final String CONSISTENT_REQUEST
Where to use or not the consisten request paradigm. Default to false;- See Also:
 - Constant Field Values
 
 
- 
SECURE_MODE
public static final String SECURE_MODE
trueif you need to connect to Mongo DB in secure mode,falseotherwise. 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 String DB_USERNAME
Username to use to connect Mongo DB. Defaults to empty string.- See Also:
 - Constant Field Values
 
 
- 
DB_PASSWORD
public static final String DB_PASSWORD
Password to use to connect Mongo DB. Defaults to empty string.- See Also:
 - Constant Field Values
 
 
 - 
 
- 
Constructor Detail
- 
MongoDBSymbols
public MongoDBSymbols()
 
 - 
 
 -