Skip to content

Commit 22a2df3

Browse files
committed
Remove deprecation annotations for TransportSingleItemBulkWriteAction and children
In practice, these adapter classes are unlikely to be removed, unless we drop support (at the API level) for the single-item operations. Since the single item operations are likely to stick around, we have no plan to remove these adapter classes. Signed-off-by: Michael Froh <[email protected]>
1 parent c0e6f12 commit 22a2df3

File tree

4 files changed

+3
-10
lines changed

4 files changed

+3
-10
lines changed

server/src/main/java/org/opensearch/action/bulk/TransportSingleItemBulkWriteAction.java

-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@
5050
*
5151
* @opensearch.internal
5252
*/
53-
@Deprecated
5453
public abstract class TransportSingleItemBulkWriteAction<
5554
Request extends ReplicatedWriteRequest<Request>,
5655
Response extends ReplicationResponse & WriteResponse> extends HandledTransportAction<Request, Response> {

server/src/main/java/org/opensearch/action/delete/TransportDeleteAction.java

+1-3
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,11 @@
3939
import org.opensearch.transport.TransportService;
4040

4141
/**
42-
* Performs the delete operation.
42+
* Performs the delete operation by delegating to {@link TransportBulkAction} with a single delete operation.
4343
* <p>
44-
* Deprecated use TransportBulkAction with a single item instead
4544
*
4645
* @opensearch.internal
4746
*/
48-
@Deprecated
4947
public class TransportDeleteAction extends TransportSingleItemBulkWriteAction<DeleteRequest, DeleteResponse> {
5048

5149
@Inject

server/src/main/java/org/opensearch/action/index/TransportIndexAction.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,10 @@
4848
* <li><b>allowIdGeneration</b>: If the id is set not, should it be generated. Defaults to {@code true}.
4949
* </ul>
5050
*
51-
* Deprecated use TransportBulkAction with a single item instead
51+
* Delegates to {@link TransportBulkAction} to process a single index operation.
5252
*
5353
* @opensearch.internal
5454
*/
55-
@Deprecated
5655
public class TransportIndexAction extends TransportSingleItemBulkWriteAction<IndexRequest, IndexResponse> {
5756

5857
@Inject

server/src/main/java/org/opensearch/action/update/TransportUpdateAction.java

+1-4
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,10 @@
4646
import org.opensearch.transport.TransportService;
4747

4848
/**
49-
* Performs the update operation.
50-
* <p>
51-
* Deprecated use TransportBulkAction with a single item instead
49+
* Performs the update operation by delegating to {@link TransportBulkAction} with a single update operation.
5250
*
5351
* @opensearch.internal
5452
*/
55-
@Deprecated
5653
public class TransportUpdateAction extends HandledTransportAction<UpdateRequest, UpdateResponse> {
5754

5855
private final TransportBulkAction bulkAction;

0 commit comments

Comments
 (0)