All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.ogm.datastore.mongodb.MongoDBProperties Maven / Gradle / Ivy

There is a newer version: 5.4.2.Final
Show newest version
/*
 * Hibernate OGM, Domain model persistence for NoSQL datastores
 *
 * License: GNU Lesser General Public License (LGPL), version 2.1 or later
 * See the lgpl.txt file in the root directory or .
 */
package org.hibernate.ogm.datastore.mongodb;

import org.hibernate.boot.registry.StandardServiceRegistryBuilder;
import org.hibernate.ogm.datastore.document.cfg.DocumentStoreProperties;
import org.hibernate.ogm.datastore.document.options.AssociationStorageType;
import org.hibernate.ogm.datastore.mongodb.options.ReadPreferenceType;
import org.hibernate.ogm.datastore.mongodb.options.WriteConcernType;

import com.mongodb.ReadPreference;
import com.mongodb.WriteConcern;

/**
 * Properties for configuring the MongoDB datastore via {@code persistence.xml} or {@link StandardServiceRegistryBuilder}.
 *
 * @author Sanne Grinovero <[email protected]> (C) 2012 Red Hat Inc.
 * @author Gunnar Morling
 */
public final class MongoDBProperties implements DocumentStoreProperties {

	/**
	 * Configuration property for defining the acknowledgement of write operations. Supported values are the
	 * {@link WriteConcernType} enum or the String representations of its constants.
	 * 

* Specify {@link WriteConcernType#CUSTOM} in conjunction with {@link #WRITE_CONCERN_TYPE} to specify a custom * {@link WriteConcern} implementation. *

* Defaults to {@link WriteConcernType#ACKNOWLEDGED}. * * @see WriteConcern */ public static final String WRITE_CONCERN = "hibernate.ogm.mongodb.write_concern"; /** * Configuration property for setting a custom {@link WriteConcern} implementation. Can be given as fully-qualified * class name, class-object or instance of the implementation type. If not given as instance, the specified type * must have a default (no-args) constructor. *

* Only takes affect if {@link #WRITE_CONCERN} is set to {@link WriteConcernType#CUSTOM}. */ public static final String WRITE_CONCERN_TYPE = "hibernate.ogm.mongodb.write_concern_type"; public static final String READ_CONCERN_TYPE = "hibernate.ogm.mongodb.read_concern_type"; public static final String READ_CONCERN = "hibernate.ogm.mongodb.read_concern"; /** * Configuration property for setting the read preference. Supported values are the {@link ReadPreferenceType} enum * or the String representations of its constants. *

* Defaults to {@link ReadPreferenceType#PRIMARY}. * * @see ReadPreference */ public static final String READ_PREFERENCE = "hibernate.ogm.mongodb.read_preference"; /** * Configuration property for specifying how to store association documents. Only applicable if * {@link DocumentStoreProperties#ASSOCIATIONS_STORE} is set to {@link AssociationStorageType#ASSOCIATION_DOCUMENT}. * Supported values are the {@link org.hibernate.ogm.datastore.mongodb.options.AssociationDocumentStorageType} enum or the String representations of its constants. * Defaults to {@link org.hibernate.ogm.datastore.mongodb.options.AssociationDocumentStorageType#GLOBAL_COLLECTION}. */ public static final String ASSOCIATION_DOCUMENT_STORAGE = "hibernate.ogm.mongodb.association_document_storage"; /** * Specify the authentication mechanism that MongoDB will use to authenticate the connection. * Possible values are listed in {@link org.hibernate.ogm.datastore.mongodb.options.AuthenticationMechanismType}. * * {@code BEST} (default) will handshake with the server to find the best authentication mechanism. * * @see com.mongodb.MongoCredential */ public static final String AUTHENTICATION_MECHANISM = "hibernate.ogm.mongodb.authentication_mechanism"; /** * Specify the authentication database to use to check the credentials. */ public static final String AUTHENTICATION_DATABASE = "hibernate.ogm.mongodb.authentication_database"; /** * Property prefix for MongoDB driver settings which needs to be passed on to the driver. Refer to * the options of {@link com.mongodb.MongoClientOptions.Builder} for a list of available properties. * All string, int and boolean builder methods can be configured, eg {@code hibernate.ogm.mongodb.driver.maxWaitTime = 1000}. */ public static final String MONGO_DRIVER_SETTINGS_PREFIX = "hibernate.ogm.mongodb.driver"; private MongoDBProperties() { } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy