/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/SimpleMongoClientDbFactory.java

http://github.com/SpringSource/spring-data-mongodb · Java · 74 lines · 20 code · 6 blank · 48 comment · 0 complexity · 1efaa170b63367abe3e4393ed01bab99 MD5 · raw file

  1. /*
  2. * Copyright 2018-2021 the original author or authors.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * https://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package org.springframework.data.mongodb.core;
  17. import com.mongodb.ConnectionString;
  18. import com.mongodb.client.MongoClient;
  19. import com.mongodb.client.MongoClients;
  20. import com.mongodb.client.MongoDatabase;
  21. /**
  22. * Factory to create {@link MongoDatabase} instances from a {@link MongoClient} instance.
  23. *
  24. * @author Christoph Strobl
  25. * @since 2.1
  26. * @deprecated since 3.0, use {@link SimpleMongoClientDatabaseFactory} instead.
  27. */
  28. @Deprecated
  29. public class SimpleMongoClientDbFactory extends SimpleMongoClientDatabaseFactory {
  30. /**
  31. * Creates a new {@link SimpleMongoClientDbFactory} instance for the given {@code connectionString}.
  32. *
  33. * @param connectionString connection coordinates for a database connection. Must contain a database name and must not
  34. * be {@literal null} or empty.
  35. * @see <a href="https://docs.mongodb.com/manual/reference/connection-string/">MongoDB Connection String reference</a>
  36. */
  37. public SimpleMongoClientDbFactory(String connectionString) {
  38. this(new ConnectionString(connectionString));
  39. }
  40. /**
  41. * Creates a new {@link SimpleMongoClientDbFactory} instance from the given {@link MongoClient}.
  42. *
  43. * @param connectionString connection coordinates for a database connection. Must contain also a database name and not
  44. * be {@literal null}.
  45. */
  46. public SimpleMongoClientDbFactory(ConnectionString connectionString) {
  47. this(MongoClients.create(connectionString), connectionString.getDatabase(), true);
  48. }
  49. /**
  50. * Creates a new {@link SimpleMongoClientDbFactory} instance from the given {@link MongoClient}.
  51. *
  52. * @param mongoClient must not be {@literal null}.
  53. * @param databaseName must not be {@literal null} or empty.
  54. */
  55. public SimpleMongoClientDbFactory(MongoClient mongoClient, String databaseName) {
  56. this(mongoClient, databaseName, false);
  57. }
  58. /**
  59. * Creates a new {@link SimpleMongoClientDbFactory} instance from the given {@link MongoClient}.
  60. *
  61. * @param mongoClient must not be {@literal null}.
  62. * @param databaseName must not be {@literal null} or empty.
  63. * @param mongoInstanceCreated
  64. */
  65. private SimpleMongoClientDbFactory(MongoClient mongoClient, String databaseName, boolean mongoInstanceCreated) {
  66. super(mongoClient, databaseName, mongoInstanceCreated);
  67. }
  68. }