/driver-core/src/main/com/mongodb/client/model/RenameCollectionOptions.java

http://github.com/mongodb/mongo-java-driver · Java · 54 lines · 17 code · 5 blank · 32 comment · 0 complexity · 8f8834a13820d746039025c7262f57b1 MD5 · raw file

  1. /*
  2. * Copyright 2008-present MongoDB, Inc.
  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. * http://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 com.mongodb.client.model;
  17. /**
  18. * The options to apply when renaming a collection.
  19. *
  20. * @mongodb.driver.manual reference/command/renameCollection renameCollection
  21. * @since 3.0
  22. */
  23. public class RenameCollectionOptions {
  24. private boolean dropTarget;
  25. /**
  26. * Gets if mongod should drop the target of renameCollection prior to renaming the collection.
  27. *
  28. * @return true if mongod should drop the target of renameCollection prior to renaming the collection.
  29. */
  30. public boolean isDropTarget() {
  31. return dropTarget;
  32. }
  33. /**
  34. * Sets if mongod should drop the target of renameCollection prior to renaming the collection.
  35. *
  36. * @param dropTarget true if mongod should drop the target of renameCollection prior to renaming the collection.
  37. * @return this
  38. */
  39. public RenameCollectionOptions dropTarget(final boolean dropTarget) {
  40. this.dropTarget = dropTarget;
  41. return this;
  42. }
  43. @Override
  44. public String toString() {
  45. return "RenameCollectionOptions{"
  46. + "dropTarget=" + dropTarget
  47. + '}';
  48. }
  49. }