ACCUMULO-802 updated MockTableNamespaceOperations to use Credentials rather than just a username
Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/ef9c3999 Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/ef9c3999 Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/ef9c3999 Branch: refs/heads/ACCUMULO-802 Commit: ef9c399983426fd5752824711d0fc7948b02c497 Parents: e7b1833 Author: Sean Hickey <[email protected]> Authored: Tue Jul 30 07:30:07 2013 -0400 Committer: Christopher Tubbs <[email protected]> Committed: Thu Oct 31 21:27:10 2013 -0400 ---------------------------------------------------------------------- .../accumulo/core/client/mock/MockTableNamespaceOperations.java | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/ef9c3999/core/src/main/java/org/apache/accumulo/core/client/mock/MockTableNamespaceOperations.java ---------------------------------------------------------------------- diff --git a/core/src/main/java/org/apache/accumulo/core/client/mock/MockTableNamespaceOperations.java b/core/src/main/java/org/apache/accumulo/core/client/mock/MockTableNamespaceOperations.java index 1364f0f..94fdb4b 100644 --- a/core/src/main/java/org/apache/accumulo/core/client/mock/MockTableNamespaceOperations.java +++ b/core/src/main/java/org/apache/accumulo/core/client/mock/MockTableNamespaceOperations.java @@ -36,6 +36,7 @@ import org.apache.accumulo.core.client.admin.DiskUsage; import org.apache.accumulo.core.client.admin.TableNamespaceOperationsHelper; import org.apache.accumulo.core.client.admin.TimeType; import org.apache.accumulo.core.client.impl.Tables; +import org.apache.accumulo.core.security.Credentials; import org.apache.commons.lang.NotImplementedException; public class MockTableNamespaceOperations extends TableNamespaceOperationsHelper {
