This is an automated email from the ASF dual-hosted git repository.

mmiller pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/accumulo.git.


    from 4b7428f  Merge branch '1.9'
     new 31a2de7  Created AccumuloClient from Connector #636
     new 79b3468  Deprecate Connector #636
     new 3a6e76d  Replaced uses of Connector with AccumuloClient #636
     new 18287e7  Fix javadoc #636
     new 486b799  Create Accumulo class as main entry point #636
     new 905f338  Replace AccumuloClient.builder() with Accumulo.newClient() 
#636
     new 3f82838  Replace getConnector() with getClient() #636
     new 1d1a2a5  Updates from pull request #636
     new 4043c72  Merge branch 'accumulo-client' Closes #636

The 9 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../core/client/mapred/AbstractInputFormat.java    |  11 +-
 .../core/client/mapred/AccumuloOutputFormat.java   |   9 +-
 .../core/client/mapreduce/AbstractInputFormat.java |  11 +-
 .../client/mapreduce/AccumuloOutputFormat.java     |   9 +-
 .../mapreduce/lib/impl/ConfiguratorBase.java       |  14 +-
 .../mapreduce/lib/impl/InputConfigurator.java      |   7 +-
 .../mapreduce/lib/impl/MapReduceClientOpts.java    |   5 +-
 .../mapreduce/lib/impl/ConfiguratorBaseTest.java   |   4 +-
 .../java/org/apache/accumulo/core/Accumulo.java    |  35 +--
 .../org/apache/accumulo/core/cli/ClientOpts.java   |  15 +-
 .../client/{Connector.java => AccumuloClient.java} | 228 ++++------------
 .../accumulo/core/client/ClientConfiguration.java  |   3 +-
 .../apache/accumulo/core/client/ClientInfo.java    |   3 +-
 .../org/apache/accumulo/core/client/Connector.java | 299 +--------------------
 .../org/apache/accumulo/core/client/Instance.java  |   3 +-
 .../accumulo/core/client/ZooKeeperInstance.java    |  10 +-
 ...{ConnectorImpl.java => AccumuloClientImpl.java} |  22 +-
 .../accumulo/core/client/impl/BulkImport.java      |   2 +-
 .../accumulo/core/client/impl/ClientContext.java   |  10 +-
 .../core/client/impl/ClientInfoFactory.java        |   6 +-
 .../accumulo/core/client/impl/Credentials.java     |   6 +-
 .../accumulo/core/client/impl/OfflineIterator.java |   6 +-
 .../client/impl/ReplicationOperationsImpl.java     |  12 +-
 .../core/client/impl/TableOperationsImpl.java      |   6 +-
 .../accumulo/core/metadata/MetadataServicer.java   |   2 +-
 .../core/metadata/TableMetadataServicer.java       |   2 +-
 .../core/metadata/schema/MetadataScanner.java      |  10 +-
 .../core/replication/ReplicationTable.java         |  14 +-
 .../org/apache/accumulo/core/summary/Gatherer.java |   2 +-
 .../java/org/apache/accumulo/core/util/Merge.java  |  16 +-
 .../core/client/impl/TableOperationsImplTest.java  |  13 +-
 .../core/metadata/MetadataServicerTest.java        |   6 +-
 .../org/apache/accumulo/core/util/MergeTest.java   |   8 +-
 .../apache/accumulo/cluster/AccumuloCluster.java   |  11 +
 .../standalone/StandaloneAccumuloCluster.java      |  11 +-
 .../accumulo/minicluster/MiniAccumuloCluster.java  |  18 +-
 .../minicluster/impl/MiniAccumuloClusterImpl.java  |  14 +-
 .../impl/MiniAccumuloClusterImplTest.java          |   4 +-
 .../org/apache/accumulo/proxy/ProxyServer.java     |  26 +-
 .../org/apache/accumulo/server/ServerContext.java  |  14 +-
 .../server/client/ClientServiceHandler.java        |   2 +-
 .../server/master/balancer/GroupBalancer.java      |   2 +-
 .../server/master/balancer/TableLoadBalancer.java  |   2 +-
 .../server/master/state/MetaDataStateStore.java    |   2 +-
 .../server/master/state/MetaDataTableScanner.java  |   6 +-
 .../accumulo/server/problems/ProblemReports.java   |  11 +-
 .../replication/PrintReplicationRecords.java       |   6 +-
 .../server/replication/ReplicaSystemHelper.java    |   2 +-
 .../server/replication/ReplicationUtil.java        |  12 +-
 .../accumulo/server/replication/WorkAssigner.java  |   4 +-
 .../org/apache/accumulo/server/util/Admin.java     |  59 ++--
 .../server/util/CheckForMetadataProblems.java      |   2 +-
 .../accumulo/server/util/ListVolumesUsed.java      |   2 +-
 .../apache/accumulo/server/util/LocalityCheck.java |   6 +-
 .../accumulo/server/util/MetadataTableUtil.java    |  18 +-
 .../apache/accumulo/server/util/RandomWriter.java  |   6 +-
 .../accumulo/server/util/RandomizeVolumes.java     |  10 +-
 .../server/util/RemoveEntriesForMissingFiles.java  |   8 +-
 .../accumulo/server/util/ReplicationTableUtil.java |   8 +-
 .../accumulo/server/util/TableDiskUsage.java       |  15 +-
 .../server/util/VerifyTabletAssignments.java       |   4 +-
 .../server/security/SystemCredentialsTest.java     |   6 +-
 .../server/util/ReplicationTableUtilTest.java      |   4 +-
 .../accumulo/gc/GarbageCollectWriteAheadLogs.java  |   6 +-
 .../apache/accumulo/gc/SimpleGarbageCollector.java |  22 +-
 .../replication/CloseWriteAheadLogReferences.java  |   8 +-
 .../gc/GarbageCollectWriteAheadLogsTest.java       |  14 +-
 .../java/org/apache/accumulo/master/Master.java    |  12 +-
 .../master/MasterClientServiceHandler.java         |   8 +-
 .../apache/accumulo/master/TabletGroupWatcher.java |  16 +-
 .../DistributedWorkQueueWorkAssigner.java          |  10 +-
 .../master/replication/FinishedWorkUpdater.java    |   6 +-
 .../RemoveCompleteReplicationRecords.java          |   8 +-
 .../master/replication/ReplicationDriver.java      |   6 +-
 .../master/replication/SequentialWorkAssigner.java |   4 +-
 .../accumulo/master/replication/StatusMaker.java   |   6 +-
 .../master/replication/UnorderedWorkAssigner.java  |   4 +-
 .../accumulo/master/replication/WorkDriver.java    |  10 +-
 .../accumulo/master/replication/WorkMaker.java     |   6 +-
 .../apache/accumulo/master/state/MergeStats.java   |  15 +-
 .../apache/accumulo/master/tableOps/CleanUp.java   |   6 +-
 .../accumulo/master/tableOps/CompactionDriver.java |   4 +-
 .../accumulo/master/tableOps/PopulateMetadata.java |   2 +-
 .../master/tableOps/PopulateMetadataTable.java     |   2 +-
 .../accumulo/master/tableOps/WriteExportFiles.java |   8 +-
 .../tableOps/bulkVer1/CleanUpBulkImport.java       |   4 +-
 .../master/tableOps/bulkVer1/CopyFailed.java       |   4 +-
 .../tableOps/bulkVer2/CleanUpBulkImport.java       |   4 +-
 .../master/tableOps/bulkVer2/LoadFiles.java        |   2 +-
 .../replication/SequentialWorkAssignerTest.java    |   6 +-
 .../replication/UnorderedWorkAssignerTest.java     |   6 +-
 .../java/org/apache/accumulo/monitor/Monitor.java  |   4 +-
 .../rest/replication/ReplicationResource.java      |   4 +-
 .../monitor/rest/trace/TracesResource.java         |   4 +-
 .../java/org/apache/accumulo/tracer/TraceDump.java |   6 +-
 .../org/apache/accumulo/tracer/TraceServer.java    |  33 +--
 .../apache/accumulo/tracer/TraceTableStats.java    |   4 +-
 .../BatchWriterReplicationReplayer.java            |   2 +-
 .../tserver/replication/ReplicationProcessor.java  |   2 +-
 .../BatchWriterReplicationReplayerTest.java        |   8 +-
 .../main/java/org/apache/accumulo/shell/Shell.java |  54 ++--
 .../accumulo/shell/commands/AddAuthsCommand.java   |   7 +-
 .../accumulo/shell/commands/AddSplitsCommand.java  |   4 +-
 .../shell/commands/AuthenticateCommand.java        |   2 +-
 .../accumulo/shell/commands/CloneTableCommand.java |   2 +-
 .../accumulo/shell/commands/CompactCommand.java    |   4 +-
 .../accumulo/shell/commands/ConfigCommand.java     |  31 ++-
 .../accumulo/shell/commands/ConstraintCommand.java |  19 +-
 .../shell/commands/CreateNamespaceCommand.java     |  10 +-
 .../shell/commands/CreateTableCommand.java         |  22 +-
 .../accumulo/shell/commands/CreateUserCommand.java |   4 +-
 .../apache/accumulo/shell/commands/DUCommand.java  |   7 +-
 .../shell/commands/DeleteAuthsCommand.java         |  12 +-
 .../accumulo/shell/commands/DeleteCommand.java     |   3 +-
 .../accumulo/shell/commands/DeleteIterCommand.java |   8 +-
 .../accumulo/shell/commands/DeleteManyCommand.java |   4 +-
 .../shell/commands/DeleteNamespaceCommand.java     |   6 +-
 .../accumulo/shell/commands/DeleteRowsCommand.java |   2 +-
 .../shell/commands/DeleteTableCommand.java         |   2 +-
 .../accumulo/shell/commands/DropUserCommand.java   |   4 +-
 .../shell/commands/ExportTableCommand.java         |   2 +-
 .../accumulo/shell/commands/FlushCommand.java      |   2 +-
 .../accumulo/shell/commands/FormatterCommand.java  |   4 +-
 .../accumulo/shell/commands/GetAuthsCommand.java   |   5 +-
 .../accumulo/shell/commands/GetGroupsCommand.java  |   2 +-
 .../accumulo/shell/commands/GetSplitsCommand.java  |   8 +-
 .../accumulo/shell/commands/GrantCommand.java      |   8 +-
 .../accumulo/shell/commands/GrepCommand.java       |   4 +-
 .../shell/commands/ImportDirectoryCommand.java     |   6 +-
 .../shell/commands/ImportTableCommand.java         |   2 +-
 .../accumulo/shell/commands/InsertCommand.java     |   4 +-
 .../shell/commands/ListCompactionsCommand.java     |   2 +-
 .../accumulo/shell/commands/ListIterCommand.java   |   8 +-
 .../accumulo/shell/commands/ListScansCommand.java  |   2 +-
 .../accumulo/shell/commands/MaxRowCommand.java     |   2 +-
 .../accumulo/shell/commands/MergeCommand.java      |   4 +-
 .../accumulo/shell/commands/NamespacesCommand.java |   2 +-
 .../accumulo/shell/commands/OfflineCommand.java    |   2 +-
 .../accumulo/shell/commands/OnlineCommand.java     |   2 +-
 .../apache/accumulo/shell/commands/OptUtil.java    |   4 +-
 .../accumulo/shell/commands/PasswdCommand.java     |   8 +-
 .../accumulo/shell/commands/PingCommand.java       |   2 +-
 .../shell/commands/RenameNamespaceCommand.java     |   2 +-
 .../shell/commands/RenameTableCommand.java         |   2 +-
 .../accumulo/shell/commands/RevokeCommand.java     |   8 +-
 .../accumulo/shell/commands/ScanCommand.java       |  10 +-
 .../accumulo/shell/commands/ScriptCommand.java     |   2 +-
 .../accumulo/shell/commands/SetAuthsCommand.java   |   5 +-
 .../accumulo/shell/commands/SetGroupsCommand.java  |   2 +-
 .../accumulo/shell/commands/SetIterCommand.java    |  10 +-
 .../shell/commands/SetScanIterCommand.java         |   6 +-
 .../commands/ShellPluginConfigurationCommand.java  |   9 +-
 .../accumulo/shell/commands/SummariesCommand.java  |   4 +-
 .../accumulo/shell/commands/TableCommand.java      |   2 +-
 .../accumulo/shell/commands/TableOperation.java    |   4 +-
 .../accumulo/shell/commands/TablesCommand.java     |   2 +-
 .../accumulo/shell/commands/TraceCommand.java      |  12 +-
 .../shell/commands/UserPermissionsCommand.java     |  15 +-
 .../accumulo/shell/commands/UsersCommand.java      |   2 +-
 .../accumulo/shell/commands/WhoAmICommand.java     |   2 +-
 .../shell/commands/DeleteAuthsCommandTest.java     |  14 +-
 .../shell/commands/DropUserCommandTest.java        |   8 +-
 .../shell/commands/SetIterCommandTest.java         |  10 +-
 .../accumulo/harness/AccumuloClusterHarness.java   |  25 +-
 .../accumulo/harness/SharedMiniClusterBase.java    |  11 +-
 .../StandaloneAccumuloClusterConfiguration.java    |   4 +-
 .../accumulo/test/ArbitraryTablePropertiesIT.java  |  12 +-
 .../org/apache/accumulo/test/AuditMessageIT.java   |  87 +++---
 .../accumulo/test/BadDeleteMarkersCreatedIT.java   |  10 +-
 .../org/apache/accumulo/test/BalanceFasterIT.java  |   4 +-
 .../java/org/apache/accumulo/test/BalanceIT.java   |   4 +-
 .../accumulo/test/BalanceWithOfflineTableIT.java   |   4 +-
 .../org/apache/accumulo/test/BatchWriterIT.java    |   4 +-
 .../accumulo/test/BatchWriterInTabletServerIT.java |   8 +-
 .../apache/accumulo/test/BatchWriterIterator.java  |  20 +-
 .../accumulo/test/BulkImportMonitoringIT.java      |   4 +-
 .../accumulo/test/BulkImportSequentialRowsIT.java  |   4 +-
 .../apache/accumulo/test/BulkImportVolumeIT.java   |   2 +-
 .../java/org/apache/accumulo/test/CleanWalIT.java  |  12 +-
 .../apache/accumulo/test/ClientSideIteratorIT.java |   6 +-
 .../java/org/apache/accumulo/test/CloneIT.java     |  16 +-
 .../accumulo/test/CompactionRateLimitingIT.java    |   4 +-
 .../apache/accumulo/test/ConditionalWriterIT.java  |  46 ++--
 .../test/ConfigurableMajorCompactionIT.java        |   8 +-
 .../accumulo/test/DetectDeadTabletServersIT.java   |   6 +-
 .../org/apache/accumulo/test/ExistingMacIT.java    |   8 +-
 .../java/org/apache/accumulo/test/FindMaxIT.java   |   4 +-
 .../apache/accumulo/test/GarbageCollectWALIT.java  |   4 +-
 .../apache/accumulo/test/GetFileInfoBulkIT.java    |   4 +-
 .../org/apache/accumulo/test/IMMLGBenchmark.java   |  13 +-
 .../org/apache/accumulo/test/ImportExportIT.java   |   6 +-
 .../accumulo/test/InterruptibleScannersIT.java     |   4 +-
 .../accumulo/test/IsolationAndDeepCopyIT.java      |   4 +-
 .../apache/accumulo/test/KeyValueEqualityIT.java   |   4 +-
 .../org/apache/accumulo/test/LargeSplitRowIT.java  |  10 +-
 .../java/org/apache/accumulo/test/LocatorIT.java   |   4 +-
 .../java/org/apache/accumulo/test/ManySplitIT.java |   2 +-
 .../test/MasterRepairsDualAssignmentIT.java        |   4 +-
 .../accumulo/test/MetaConstraintRetryIT.java       |   2 +-
 .../apache/accumulo/test/MetaGetsReadersIT.java    |   6 +-
 .../org/apache/accumulo/test/MetaRecoveryIT.java   |   4 +-
 .../java/org/apache/accumulo/test/MetaSplitIT.java |  12 +-
 .../test/MissingWalHeaderCompletesRecoveryIT.java  |  10 +-
 .../accumulo/test/MultiTableBatchWriterIT.java     |  26 +-
 .../apache/accumulo/test/MultiTableRecoveryIT.java |   6 +-
 .../org/apache/accumulo/test/NamespacesIT.java     |   8 +-
 .../accumulo/test/NewTableConfigurationIT.java     | 113 ++++----
 .../org/apache/accumulo/test/OrIteratorIT.java     |  14 +-
 .../apache/accumulo/test/QueryMetadataTable.java   |  12 +-
 .../test/RecoveryCompactionsAreFlushesIT.java      |   4 +-
 .../accumulo/test/RewriteTabletDirectoriesIT.java  |   6 +-
 .../java/org/apache/accumulo/test/SampleIT.java    |  12 +-
 .../apache/accumulo/test/ScanFlushWithTimeIT.java  |   4 +-
 .../org/apache/accumulo/test/ShellConfigIT.java    |   6 +-
 .../org/apache/accumulo/test/ShellServerIT.java    |  65 ++---
 .../apache/accumulo/test/SplitCancelsMajCIT.java   |   4 +-
 .../org/apache/accumulo/test/SplitRecoveryIT.java  |  35 +--
 .../accumulo/test/TableConfigurationUpdateIT.java  |   4 +-
 .../apache/accumulo/test/TableOperationsIT.java    | 104 +++----
 .../accumulo/test/TabletServerGivesUpIT.java       |   4 +-
 .../accumulo/test/TabletServerHdfsRestartIT.java   |   4 +-
 .../org/apache/accumulo/test/TestBinaryRows.java   |  18 +-
 .../java/org/apache/accumulo/test/TestIngest.java  |  20 +-
 .../apache/accumulo/test/TestMultiTableIngest.java |  14 +-
 .../apache/accumulo/test/TestRandomDeletes.java    |   9 +-
 .../ThriftServerBindsBeforeZooKeeperLockIT.java    |   4 +-
 .../org/apache/accumulo/test/TotalQueuedIT.java    |   6 +-
 .../test/TracerRecoversAfterOfflineTableIT.java    |   4 +-
 .../java/org/apache/accumulo/test/UnusedWALIT.java |  12 +-
 .../accumulo/test/UserCompactionStrategyIT.java    |  20 +-
 .../java/org/apache/accumulo/test/UsersIT.java     |   4 +-
 .../org/apache/accumulo/test/VerifyIngest.java     |  12 +-
 .../accumulo/test/VerifySerialRecoveryIT.java      |   4 +-
 .../accumulo/test/VolumeChooserFailureIT.java      |  24 +-
 .../org/apache/accumulo/test/VolumeChooserIT.java  | 137 +++++-----
 .../java/org/apache/accumulo/test/VolumeIT.java    |  80 +++---
 .../org/apache/accumulo/test/WaitForBalanceIT.java |   6 +-
 .../org/apache/accumulo/test/YieldScannersIT.java  |   6 +-
 .../accumulo/test/ZooKeeperPropertiesIT.java       |   4 +-
 .../{ConnectorIT.java => AccumuloClientIT.java}    |  17 +-
 .../accumulo/test/functional/AddSplitIT.java       |   8 +-
 .../accumulo/test/functional/BackupMasterIT.java   |   4 +-
 .../test/functional/BadIteratorMincIT.java         |   4 +-
 .../functional/BalanceAfterCommsFailureIT.java     |   6 +-
 .../BalanceInPresenceOfOfflineTableIT.java         |  28 +-
 .../accumulo/test/functional/BatchScanSplitIT.java |  22 +-
 .../test/functional/BatchWriterFlushIT.java        |  18 +-
 .../accumulo/test/functional/BigRootTabletIT.java  |   4 +-
 .../apache/accumulo/test/functional/BinaryIT.java  |   8 +-
 .../accumulo/test/functional/BinaryStressIT.java   |   8 +-
 .../accumulo/test/functional/BloomFilterIT.java    |  10 +-
 .../accumulo/test/functional/BulkFileIT.java       |   6 +-
 .../apache/accumulo/test/functional/BulkIT.java    |  12 +-
 .../accumulo/test/functional/BulkLoadIT.java       |  23 +-
 .../test/functional/BulkSplitOptimizationIT.java   |  14 +-
 .../test/functional/ChaoticBalancerIT.java         |   4 +-
 .../accumulo/test/functional/ClassLoaderIT.java    |   6 +-
 .../accumulo/test/functional/CleanTmpIT.java       |   4 +-
 .../apache/accumulo/test/functional/CleanUpIT.java |   6 +-
 .../accumulo/test/functional/CloneTestIT.java      |  14 +-
 .../accumulo/test/functional/CombinerIT.java       |   6 +-
 .../accumulo/test/functional/CompactionIT.java     |  10 +-
 .../accumulo/test/functional/ConcurrencyIT.java    |   8 +-
 .../test/functional/ConcurrentDeleteTableIT.java   |   8 +-
 .../test/functional/ConfigurableCompactionIT.java  |  15 +-
 .../test/functional/ConfigurableMacBase.java       |   9 +-
 .../accumulo/test/functional/ConstraintIT.java     |  28 +-
 .../accumulo/test/functional/CreateAndUseIT.java   |  21 +-
 .../test/functional/CreateManyScannersIT.java      |   4 +-
 .../accumulo/test/functional/CredentialsIT.java    |  13 +-
 .../test/functional/DeleteEverythingIT.java        |  20 +-
 .../accumulo/test/functional/DeleteFailIT.java     |   4 +-
 .../apache/accumulo/test/functional/DeleteIT.java  |   8 +-
 .../accumulo/test/functional/DeleteRowsIT.java     |   6 +-
 .../test/functional/DeleteRowsSplitIT.java         |   6 +-
 .../test/functional/DeleteTableDuringSplitIT.java  |   8 +-
 .../test/functional/DeletedTablesDontFlushIT.java  |   4 +-
 .../accumulo/test/functional/DurabilityIT.java     |  18 +-
 .../test/functional/DynamicThreadPoolsIT.java      |   8 +-
 .../accumulo/test/functional/FateStarvationIT.java |   4 +-
 .../test/functional/FunctionalTestUtils.java       |  13 +-
 .../test/functional/GarbageCollectorIT.java        |  26 +-
 .../test/functional/HalfDeadTServerIT.java         |   4 +-
 .../accumulo/test/functional/KerberosIT.java       |  51 ++--
 .../accumulo/test/functional/KerberosProxyIT.java  |  12 +-
 .../test/functional/KerberosRenewalIT.java         |   6 +-
 .../accumulo/test/functional/LargeRowIT.java       |  16 +-
 .../accumulo/test/functional/LogicalTimeIT.java    |   6 +-
 .../accumulo/test/functional/MapReduceIT.java      |   6 +-
 .../test/functional/MasterAssignmentIT.java        |   6 +-
 .../accumulo/test/functional/MasterFailoverIT.java |   4 +-
 .../apache/accumulo/test/functional/MaxOpenIT.java |  10 +-
 .../apache/accumulo/test/functional/MergeIT.java   |  16 +-
 .../accumulo/test/functional/MetadataIT.java       |   8 +-
 .../test/functional/MetadataMaxFilesIT.java        |   4 +-
 .../accumulo/test/functional/MetadataSplitIT.java  |   4 +-
 .../accumulo/test/functional/PermissionsIT.java    |  40 +--
 .../accumulo/test/functional/ReadWriteIT.java      | 123 ++++-----
 .../test/functional/RecoveryWithEmptyRFileIT.java  |  22 +-
 .../test/functional/RegexGroupBalanceIT.java       |   6 +-
 .../apache/accumulo/test/functional/RenameIT.java  |   4 +-
 .../apache/accumulo/test/functional/RestartIT.java |  16 +-
 .../accumulo/test/functional/RestartStressIT.java  |   4 +-
 .../accumulo/test/functional/RowDeleteIT.java      |   4 +-
 .../apache/accumulo/test/functional/ScanIdIT.java  |  28 +-
 .../accumulo/test/functional/ScanIteratorIT.java   |  30 ++-
 .../accumulo/test/functional/ScanRangeIT.java      |  12 +-
 .../test/functional/ScanSessionTimeOutIT.java      |   8 +-
 .../accumulo/test/functional/ScannerContextIT.java |  14 +-
 .../apache/accumulo/test/functional/ScannerIT.java |   4 +-
 .../test/functional/ServerSideErrorIT.java         |   4 +-
 .../test/functional/SessionBlockVerifyIT.java      |   4 +-
 .../test/functional/SessionDurabilityIT.java       |  16 +-
 .../accumulo/test/functional/ShutdownIT.java       |   8 +-
 .../test/functional/SimpleBalancerFairnessIT.java  |   4 +-
 .../test/functional/SparseColumnFamilyIT.java      |   4 +-
 .../apache/accumulo/test/functional/SplitIT.java   |  15 +-
 .../org/apache/accumulo/test/functional/SslIT.java |  12 +-
 .../apache/accumulo/test/functional/SummaryIT.java |  32 +--
 .../test/functional/TableChangeStateIT.java        |  38 +--
 .../apache/accumulo/test/functional/TableIT.java   |   4 +-
 .../apache/accumulo/test/functional/TabletIT.java  |  16 +-
 .../functional/TabletStateChangeIteratorIT.java    |  36 +--
 .../apache/accumulo/test/functional/TimeoutIT.java |  15 +-
 .../accumulo/test/functional/TooManyDeletesIT.java |   4 +-
 .../accumulo/test/functional/VisibilityIT.java     |  37 +--
 .../accumulo/test/functional/WALSunnyDayIT.java    |  11 +-
 .../test/functional/WatchTheWatchCountIT.java      |   4 +-
 .../test/functional/WriteAheadLogEncryptedIT.java  |   4 +-
 .../accumulo/test/functional/WriteAheadLogIT.java  |   4 +-
 .../accumulo/test/functional/WriteLotsIT.java      |   4 +-
 .../accumulo/test/functional/ZooCacheIT.java       |   2 +-
 .../test/functional/ZookeeperRestartIT.java        |   4 +-
 .../CloseWriteAheadLogReferencesIT.java            |   8 +-
 .../test/mapred/AccumuloFileOutputFormatIT.java    |   8 +-
 .../test/mapred/AccumuloInputFormatIT.java         |  10 +-
 .../mapred/AccumuloMultiTableInputFormatIT.java    |   4 +-
 .../test/mapred/AccumuloOutputFormatIT.java        |  13 +-
 .../test/mapred/AccumuloRowInputFormatIT.java      |   4 +-
 .../apache/accumulo/test/mapred/TokenFileIT.java   |   4 +-
 .../test/mapreduce/AccumuloFileOutputFormatIT.java |   4 +-
 .../test/mapreduce/AccumuloInputFormatIT.java      |  18 +-
 .../mapreduce/AccumuloMultiTableInputFormatIT.java |   4 +-
 .../test/mapreduce/AccumuloOutputFormatIT.java     |   4 +-
 .../test/mapreduce/AccumuloRowInputFormatIT.java   |   4 +-
 .../accumulo/test/mapreduce/TokenFileIT.java       |   4 +-
 .../apache/accumulo/test/master/MergeStateIT.java  |  34 +--
 .../accumulo/test/master/SuspendedTabletsIT.java   |   6 +-
 .../test/performance/ContinuousIngest.java         |   4 +-
 .../test/performance/RollWALPerformanceIT.java     |   6 +-
 .../performance/metadata/FastBulkImportIT.java     |   4 +-
 .../test/performance/scan/CollectTabletStats.java  |  12 +-
 .../accumulo/test/proxy/ProxyDurabilityIT.java     |   7 +-
 .../accumulo/test/proxy/SimpleProxyBase.java       |   6 +-
 .../test/replication/CyclicReplicationIT.java      |   7 +-
 .../test/replication/FinishedWorkUpdaterIT.java    |   6 +-
 ...GarbageCollectorCommunicatesWithTServersIT.java |  12 +-
 .../test/replication/KerberosReplicationIT.java    |   6 +-
 .../replication/MultiInstanceReplicationIT.java    |  22 +-
 .../replication/MultiTserverReplicationIT.java     |   6 +-
 .../RemoveCompleteReplicationRecordsIT.java        |  10 +-
 .../accumulo/test/replication/ReplicationIT.java   |  41 +--
 .../replication/ReplicationOperationsImplIT.java   |   8 +-
 .../ReplicationTablesPrinterThread.java            |   4 +-
 .../test/replication/SequentialWorkAssignerIT.java |  10 +-
 .../test/replication/StatusCombinerMacIT.java      |   6 +-
 .../accumulo/test/replication/StatusMakerIT.java   |   6 +-
 .../test/replication/UnorderedWorkAssignerIT.java  |  10 +-
 .../UnorderedWorkAssignerReplicationIT.java        |  22 +-
 .../UnusedWalDoesntCloseReplicationStatusIT.java   |   4 +-
 .../accumulo/test/replication/WorkMakerIT.java     |   8 +-
 .../test/server/security/SystemCredentialsIT.java  |   6 +-
 .../test/util/metadata/MetadataBatchScan.java      |  20 +-
 373 files changed, 2188 insertions(+), 2441 deletions(-)
 copy 
server/monitor/src/main/java/org/apache/accumulo/monitor/rest/tables/TableNamespace.java
 => core/src/main/java/org/apache/accumulo/core/Accumulo.java (56%)
 copy core/src/main/java/org/apache/accumulo/core/client/{Connector.java => 
AccumuloClient.java} (64%)
 rename 
core/src/main/java/org/apache/accumulo/core/client/impl/{ConnectorImpl.java => 
AccumuloClientImpl.java} (95%)
 rename 
test/src/main/java/org/apache/accumulo/test/functional/{ConnectorIT.java => 
AccumuloClientIT.java} (86%)

Reply via email to