AsyncWriteOperation<Void>
, WriteOperation<Void>
CommandWriteOperation
directly or the mongod shell helpers.@Deprecated public class DropUserOperation extends Object implements AsyncWriteOperation<Void>, WriteOperation<Void>
Constructor | Description |
---|---|
DropUserOperation(String databaseName,
String userName) |
Deprecated.
Construct a new instance.
|
DropUserOperation(String databaseName,
String userName,
WriteConcern writeConcern) |
Deprecated.
Construct a new instance.
|
Modifier and Type | Method | Description |
---|---|---|
Void |
execute(WriteBinding binding) |
Deprecated.
General execute which can return anything of type T
|
void |
executeAsync(AsyncWriteBinding binding,
SingleResultCallback<Void> callback) |
Deprecated.
General execute which can return anything of type T
|
public DropUserOperation(String databaseName, String userName)
databaseName
- the name of the database for the operation.userName
- the name of the user to be dropped.public DropUserOperation(String databaseName, String userName, WriteConcern writeConcern)
databaseName
- the name of the database for the operation.userName
- the name of the user to be dropped.writeConcern
- the write concernpublic Void execute(WriteBinding binding)
WriteOperation
execute
in interface WriteOperation<Void>
binding
- the binding to execute in the context ofpublic void executeAsync(AsyncWriteBinding binding, SingleResultCallback<Void> callback)
AsyncWriteOperation
executeAsync
in interface AsyncWriteOperation<Void>
binding
- the binding to execute in the context ofcallback
- the callback to be called when the operation has been executed