![JAR search and dependency download from the Maven repository](/logo.png)
com.mongodb.operation.RenameCollectionOperation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mongo-java-driver Show documentation
Show all versions of mongo-java-driver Show documentation
The MongoDB Java Driver uber-artifact, containing mongodb-driver, mongodb-driver-core, and bson
The newest version!
/*
* Copyright (c) 2008-2014 MongoDB, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.mongodb.operation;
import com.mongodb.MongoNamespace;
import com.mongodb.async.SingleResultCallback;
import com.mongodb.binding.AsyncWriteBinding;
import com.mongodb.binding.WriteBinding;
import org.bson.BsonBoolean;
import org.bson.BsonDocument;
import org.bson.BsonString;
import static com.mongodb.assertions.Assertions.notNull;
import static com.mongodb.operation.CommandOperationHelper.executeWrappedCommandProtocol;
import static com.mongodb.operation.CommandOperationHelper.executeWrappedCommandProtocolAsync;
import static com.mongodb.operation.OperationHelper.VoidTransformer;
/**
* An operation that renames the given collection to the new name.
*
* If the new name is the same as an existing collection and dropTarget is true, this existing collection will be dropped. If
* dropTarget is false and the newCollectionName is the same as an existing collection, a MongoServerException will be thrown.
*
* @mongodb.driver.manual reference/command/renameCollection renameCollection
* @since 3.0
*/
public class RenameCollectionOperation implements AsyncWriteOperation, WriteOperation {
private final MongoNamespace originalNamespace;
private final MongoNamespace newNamespace;
private boolean dropTarget;
/**
* @param originalNamespace the name of the collection to rename
* @param newNamespace the desired new name for the collection
*/
public RenameCollectionOperation(final MongoNamespace originalNamespace, final MongoNamespace newNamespace) {
this.originalNamespace = notNull("originalNamespace", originalNamespace);
this.newNamespace = notNull("newNamespace", newNamespace);
}
/**
* Gets if mongod should drop the target of renameCollection prior to renaming the collection.
*
* @return true if mongod should drop the target of renameCollection prior to renaming the collection.
*/
public boolean isDropTarget() {
return dropTarget;
}
/**
* Sets if mongod should drop the target of renameCollection prior to renaming the collection.
*
* @param dropTarget true if mongod should drop the target of renameCollection prior to renaming the collection.
* @return this
*/
public RenameCollectionOperation dropTarget(final boolean dropTarget) {
this.dropTarget = dropTarget;
return this;
}
/**
* Rename the collection with {@code oldCollectionName} in database {@code databaseName} to the {@code newCollectionName}.
*
* @param binding the binding
* @return a void result
* @throws com.mongodb.MongoServerException if you provide a newCollectionName that is the name of an existing collection and dropTarget
* is false, or if the oldCollectionName is the name of a collection that doesn't exist
*/
@Override
public Void execute(final WriteBinding binding) {
return executeWrappedCommandProtocol(binding, "admin", getCommand(), new VoidTransformer());
}
@Override
public void executeAsync(final AsyncWriteBinding binding, final SingleResultCallback callback) {
executeWrappedCommandProtocolAsync(binding, "admin", getCommand(), new VoidTransformer(), callback);
}
private BsonDocument getCommand() {
return new BsonDocument("renameCollection", new BsonString(originalNamespace.getFullName()))
.append("to", new BsonString(newNamespace.getFullName()))
.append("dropTarget", BsonBoolean.valueOf(dropTarget));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy