Package com.mongodb.operation
Class DropUserOperation
- java.lang.Object
-
- com.mongodb.operation.DropUserOperation
-
- All Implemented Interfaces:
AsyncWriteOperation<java.lang.Void>
,WriteOperation<java.lang.Void>
@Deprecated public class DropUserOperation extends java.lang.Object implements AsyncWriteOperation<java.lang.Void>, WriteOperation<java.lang.Void>
Deprecated.useCommandWriteOperation
directly or the mongod shell helpers.An operation to remove a user.- Since:
- 3.0
-
-
Constructor Summary
Constructors Constructor Description DropUserOperation(java.lang.String databaseName, java.lang.String userName)
Deprecated.Construct a new instance.DropUserOperation(java.lang.String databaseName, java.lang.String userName, WriteConcern writeConcern)
Deprecated.Construct a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description java.lang.Void
execute(WriteBinding binding)
Deprecated.General execute which can return anything of type Tvoid
executeAsync(AsyncWriteBinding binding, SingleResultCallback<java.lang.Void> callback)
Deprecated.General execute which can return anything of type T
-
-
-
Constructor Detail
-
DropUserOperation
public DropUserOperation(java.lang.String databaseName, java.lang.String userName)
Deprecated.Construct a new instance.- Parameters:
databaseName
- the name of the database for the operation.userName
- the name of the user to be dropped.
-
DropUserOperation
public DropUserOperation(java.lang.String databaseName, java.lang.String userName, WriteConcern writeConcern)
Deprecated.Construct a new instance.- Parameters:
databaseName
- the name of the database for the operation.userName
- the name of the user to be dropped.writeConcern
- the write concern- Since:
- 3.4
-
-
Method Detail
-
execute
public java.lang.Void execute(WriteBinding binding)
Deprecated.Description copied from interface:WriteOperation
General execute which can return anything of type T- Specified by:
execute
in interfaceWriteOperation<java.lang.Void>
- Parameters:
binding
- the binding to execute in the context of- Returns:
- T, the result of the execution
-
executeAsync
public void executeAsync(AsyncWriteBinding binding, SingleResultCallback<java.lang.Void> callback)
Deprecated.Description copied from interface:AsyncWriteOperation
General execute which can return anything of type T- Specified by:
executeAsync
in interfaceAsyncWriteOperation<java.lang.Void>
- Parameters:
binding
- the binding to execute in the context ofcallback
- the callback to be called when the operation has been executed
-
-