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

http://github.com/SpringSource/spring-data-mongodb · Java · 142 lines · 23 code · 16 blank · 103 comment · 0 complexity · bb534fd35049faddc210b89ab0dd4a12 MD5 · raw file

  1. /*
  2. * Copyright 2017-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 java.util.List;
  18. import org.springframework.data.mongodb.core.query.CriteriaDefinition;
  19. import org.springframework.data.mongodb.core.query.Query;
  20. import com.mongodb.client.result.DeleteResult;
  21. /**
  22. * {@link ExecutableRemoveOperation} allows creation and execution of MongoDB remove / findAndRemove operations in a
  23. * fluent API style. <br />
  24. * The starting {@literal domainType} is used for mapping the {@link Query} provided via {@code matching} into the
  25. * MongoDB specific representation. The collection to operate on is by default derived from the initial
  26. * {@literal domainType} and can be defined there via {@link org.springframework.data.mongodb.core.mapping.Document}.
  27. * Using {@code inCollection} allows to override the collection name for the execution.
  28. *
  29. * <pre>
  30. * <code>
  31. * remove(Jedi.class)
  32. * .inCollection("star-wars")
  33. * .matching(query(where("firstname").is("luke")))
  34. * .all();
  35. * </code>
  36. * </pre>
  37. *
  38. * @author Christoph Strobl
  39. * @author Mark Paluch
  40. * @since 2.0
  41. */
  42. public interface ExecutableRemoveOperation {
  43. /**
  44. * Start creating a remove operation for the given {@literal domainType}.
  45. *
  46. * @param domainType must not be {@literal null}.
  47. * @return new instance of {@link ExecutableRemove}.
  48. * @throws IllegalArgumentException if domainType is {@literal null}.
  49. */
  50. <T> ExecutableRemove<T> remove(Class<T> domainType);
  51. /**
  52. * @author Christoph Strobl
  53. * @since 2.0
  54. */
  55. interface TerminatingRemove<T> {
  56. /**
  57. * Remove all documents matching.
  58. *
  59. * @return the {@link DeleteResult}. Never {@literal null}.
  60. */
  61. DeleteResult all();
  62. /**
  63. * Remove the first matching document.
  64. *
  65. * @return the {@link DeleteResult}. Never {@literal null}.
  66. */
  67. DeleteResult one();
  68. /**
  69. * Remove and return all matching documents. <br/>
  70. * <strong>NOTE</strong> The entire list of documents will be fetched before sending the actual delete commands.
  71. * Also, {@link org.springframework.context.ApplicationEvent}s will be published for each and every delete
  72. * operation.
  73. *
  74. * @return empty {@link List} if no match found. Never {@literal null}.
  75. */
  76. List<T> findAndRemove();
  77. }
  78. /**
  79. * Collection override (optional).
  80. *
  81. * @param <T>
  82. * @author Christoph Strobl
  83. * @since 2.0
  84. */
  85. interface RemoveWithCollection<T> extends RemoveWithQuery<T> {
  86. /**
  87. * Explicitly set the name of the collection to perform the query on. <br />
  88. * Skip this step to use the default collection derived from the domain type.
  89. *
  90. * @param collection must not be {@literal null} nor {@literal empty}.
  91. * @return new instance of {@link RemoveWithCollection}.
  92. * @throws IllegalArgumentException if collection is {@literal null}.
  93. */
  94. RemoveWithQuery<T> inCollection(String collection);
  95. }
  96. /**
  97. * @author Christoph Strobl
  98. * @since 2.0
  99. */
  100. interface RemoveWithQuery<T> extends TerminatingRemove<T> {
  101. /**
  102. * Define the query filtering elements.
  103. *
  104. * @param query must not be {@literal null}.
  105. * @return new instance of {@link TerminatingRemove}.
  106. * @throws IllegalArgumentException if query is {@literal null}.
  107. */
  108. TerminatingRemove<T> matching(Query query);
  109. /**
  110. * Set the filter {@link CriteriaDefinition criteria} to be used.
  111. *
  112. * @param criteria must not be {@literal null}.
  113. * @return new instance of {@link TerminatingRemove}.
  114. * @throws IllegalArgumentException if query is {@literal null}.
  115. * @since 3.0
  116. */
  117. default TerminatingRemove<T> matching(CriteriaDefinition criteria) {
  118. return matching(Query.query(criteria));
  119. }
  120. }
  121. /**
  122. * @author Christoph Strobl
  123. * @since 2.0
  124. */
  125. interface ExecutableRemove<T> extends RemoveWithCollection<T> {}
  126. }