You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ec...@apache.org on 2013/02/04 20:40:10 UTC

svn commit: r1442310 [2/3] - in /accumulo/trunk: proxy/ proxy/examples/python/ proxy/examples/ruby/ proxy/src/main/java/org/apache/accumulo/proxy/ proxy/src/main/java/org/apache/accumulo/proxy/thrift/ proxy/src/main/thrift/ proxy/src/test/java/org/apac...

Modified: accumulo/trunk/proxy/src/main/java/org/apache/accumulo/proxy/thrift/AccumuloProxy.java
URL: http://svn.apache.org/viewvc/accumulo/trunk/proxy/src/main/java/org/apache/accumulo/proxy/thrift/AccumuloProxy.java?rev=1442310&r1=1442309&r2=1442310&view=diff
==============================================================================
--- accumulo/trunk/proxy/src/main/java/org/apache/accumulo/proxy/thrift/AccumuloProxy.java (original)
+++ accumulo/trunk/proxy/src/main/java/org/apache/accumulo/proxy/thrift/AccumuloProxy.java Mon Feb  4 19:40:09 2013
@@ -50,125 +50,125 @@ import org.slf4j.LoggerFactory;
 
   public interface Iface {
 
-    public boolean ping(PrincipalToken PrincipalToken) throws org.apache.thrift.TException;
+    public boolean ping(PrincipalToken principalToken) throws org.apache.thrift.TException;
 
-    public int addConstraint(PrincipalToken PrincipalToken, String tableName, String constraintClassName) throws AccumuloException, AccumuloSecurityException, TableNotFoundException, org.apache.thrift.TException;
+    public int addConstraint(PrincipalToken principalToken, String tableName, String constraintClassName) throws AccumuloException, AccumuloSecurityException, TableNotFoundException, org.apache.thrift.TException;
 
-    public void addSplits(PrincipalToken PrincipalToken, String tableName, Set<ByteBuffer> splits) throws TableNotFoundException, AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
+    public void addSplits(PrincipalToken principalToken, String tableName, Set<ByteBuffer> splits) throws TableNotFoundException, AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
 
-    public void attachIterator(PrincipalToken PrincipalToken, String tableName, IteratorSetting setting, Set<IteratorScope> scopes) throws AccumuloSecurityException, AccumuloException, TableNotFoundException, org.apache.thrift.TException;
+    public void attachIterator(PrincipalToken principalToken, String tableName, IteratorSetting setting, Set<IteratorScope> scopes) throws AccumuloSecurityException, AccumuloException, TableNotFoundException, org.apache.thrift.TException;
 
-    public void checkIteratorConflicts(PrincipalToken PrincipalToken, String tableName, IteratorSetting setting, Set<IteratorScope> scopes) throws AccumuloException, TableNotFoundException, org.apache.thrift.TException;
+    public void checkIteratorConflicts(PrincipalToken principalToken, String tableName, IteratorSetting setting, Set<IteratorScope> scopes) throws AccumuloException, TableNotFoundException, org.apache.thrift.TException;
 
-    public void clearLocatorCache(PrincipalToken PrincipalToken, String tableName) throws TableNotFoundException, org.apache.thrift.TException;
+    public void clearLocatorCache(PrincipalToken principalToken, String tableName) throws TableNotFoundException, org.apache.thrift.TException;
 
-    public void cloneTable(PrincipalToken PrincipalToken, String tableName, String newTableName, boolean flush, Map<String,String> propertiesToSet, Set<String> propertiesToExclude) throws AccumuloException, AccumuloSecurityException, TableNotFoundException, TableExistsException, org.apache.thrift.TException;
+    public void cloneTable(PrincipalToken principalToken, String tableName, String newTableName, boolean flush, Map<String,String> propertiesToSet, Set<String> propertiesToExclude) throws AccumuloException, AccumuloSecurityException, TableNotFoundException, TableExistsException, org.apache.thrift.TException;
 
-    public void compactTable(PrincipalToken PrincipalToken, String tableName, ByteBuffer startRow, ByteBuffer endRow, List<IteratorSetting> iterators, boolean flush, boolean wait) throws AccumuloSecurityException, TableNotFoundException, AccumuloException, org.apache.thrift.TException;
+    public void compactTable(PrincipalToken principalToken, String tableName, ByteBuffer startRow, ByteBuffer endRow, List<IteratorSetting> iterators, boolean flush, boolean wait) throws AccumuloSecurityException, TableNotFoundException, AccumuloException, org.apache.thrift.TException;
 
-    public void cancelCompaction(PrincipalToken PrincipalToken, String tableName) throws AccumuloSecurityException, TableNotFoundException, AccumuloException, org.apache.thrift.TException;
+    public void cancelCompaction(PrincipalToken principalToken, String tableName) throws AccumuloSecurityException, TableNotFoundException, AccumuloException, org.apache.thrift.TException;
 
-    public void createTable(PrincipalToken PrincipalToken, String tableName, boolean versioningIter, TimeType type) throws AccumuloException, AccumuloSecurityException, TableExistsException, org.apache.thrift.TException;
+    public void createTable(PrincipalToken principalToken, String tableName, boolean versioningIter, TimeType type) throws AccumuloException, AccumuloSecurityException, TableExistsException, org.apache.thrift.TException;
 
-    public void deleteTable(PrincipalToken PrincipalToken, String tableName) throws AccumuloException, AccumuloSecurityException, TableNotFoundException, org.apache.thrift.TException;
+    public void deleteTable(PrincipalToken principalToken, String tableName) throws AccumuloException, AccumuloSecurityException, TableNotFoundException, org.apache.thrift.TException;
 
-    public void deleteRows(PrincipalToken PrincipalToken, String tableName, ByteBuffer startRow, ByteBuffer endRow) throws AccumuloException, AccumuloSecurityException, TableNotFoundException, org.apache.thrift.TException;
+    public void deleteRows(PrincipalToken principalToken, String tableName, ByteBuffer startRow, ByteBuffer endRow) throws AccumuloException, AccumuloSecurityException, TableNotFoundException, org.apache.thrift.TException;
 
-    public void exportTable(PrincipalToken PrincipalToken, String tableName, String exportDir) throws TableNotFoundException, AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
+    public void exportTable(PrincipalToken principalToken, String tableName, String exportDir) throws TableNotFoundException, AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
 
-    public void flushTable(PrincipalToken PrincipalToken, String tableName, ByteBuffer startRow, ByteBuffer endRow, boolean wait) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
+    public void flushTable(PrincipalToken principalToken, String tableName, ByteBuffer startRow, ByteBuffer endRow, boolean wait) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
 
-    public Map<String,Set<String>> getLocalityGroups(PrincipalToken PrincipalToken, String tableName) throws AccumuloException, TableNotFoundException, org.apache.thrift.TException;
+    public Map<String,Set<String>> getLocalityGroups(PrincipalToken principalToken, String tableName) throws AccumuloException, TableNotFoundException, org.apache.thrift.TException;
 
-    public IteratorSetting getIteratorSetting(PrincipalToken PrincipalToken, String tableName, String iteratorName, IteratorScope scope) throws AccumuloSecurityException, AccumuloException, TableNotFoundException, org.apache.thrift.TException;
+    public IteratorSetting getIteratorSetting(PrincipalToken principalToken, String tableName, String iteratorName, IteratorScope scope) throws AccumuloSecurityException, AccumuloException, TableNotFoundException, org.apache.thrift.TException;
 
-    public ByteBuffer getMaxRow(PrincipalToken PrincipalToken, String tableName, Set<ByteBuffer> auths, ByteBuffer startRow, boolean startInclusive, ByteBuffer endRow, boolean endInclusive) throws TableNotFoundException, AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
+    public ByteBuffer getMaxRow(PrincipalToken principalToken, String tableName, Set<ByteBuffer> auths, ByteBuffer startRow, boolean startInclusive, ByteBuffer endRow, boolean endInclusive) throws TableNotFoundException, AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
 
-    public Map<String,String> getTableProperties(PrincipalToken PrincipalToken, String tableName) throws AccumuloException, TableNotFoundException, org.apache.thrift.TException;
+    public Map<String,String> getTableProperties(PrincipalToken principalToken, String tableName) throws AccumuloException, TableNotFoundException, org.apache.thrift.TException;
 
-    public List<ByteBuffer> getSplits(PrincipalToken PrincipalToken, String tableName, int maxSplits) throws TableNotFoundException, org.apache.thrift.TException;
+    public List<ByteBuffer> getSplits(PrincipalToken principalToken, String tableName, int maxSplits) throws TableNotFoundException, org.apache.thrift.TException;
 
-    public void importDirectory(PrincipalToken PrincipalToken, String tableName, String importDir, String failureDir, boolean setTime) throws TableNotFoundException, AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
+    public void importDirectory(PrincipalToken principalToken, String tableName, String importDir, String failureDir, boolean setTime) throws TableNotFoundException, AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
 
-    public void importTable(PrincipalToken PrincipalToken, String tableName, String importDir) throws TableExistsException, AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
+    public void importTable(PrincipalToken principalToken, String tableName, String importDir) throws TableExistsException, AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
 
-    public Set<String> listTables(PrincipalToken PrincipalToken) throws org.apache.thrift.TException;
+    public Set<String> listTables(PrincipalToken principalToken) throws org.apache.thrift.TException;
 
-    public Map<String,Set<IteratorScope>> listIterators(PrincipalToken PrincipalToken, String tableName) throws AccumuloSecurityException, AccumuloException, TableNotFoundException, org.apache.thrift.TException;
+    public Map<String,Set<IteratorScope>> listIterators(PrincipalToken principalToken, String tableName) throws AccumuloSecurityException, AccumuloException, TableNotFoundException, org.apache.thrift.TException;
 
-    public Map<String,Integer> listConstraints(PrincipalToken PrincipalToken, String tableName) throws AccumuloException, TableNotFoundException, org.apache.thrift.TException;
+    public Map<String,Integer> listConstraints(PrincipalToken principalToken, String tableName) throws AccumuloException, TableNotFoundException, org.apache.thrift.TException;
 
-    public void mergeTablets(PrincipalToken PrincipalToken, String tableName, ByteBuffer startRow, ByteBuffer endRow) throws AccumuloException, AccumuloSecurityException, TableNotFoundException, org.apache.thrift.TException;
+    public void mergeTablets(PrincipalToken principalToken, String tableName, ByteBuffer startRow, ByteBuffer endRow) throws AccumuloException, AccumuloSecurityException, TableNotFoundException, org.apache.thrift.TException;
 
-    public void offlineTable(PrincipalToken PrincipalToken, String tableName) throws AccumuloSecurityException, AccumuloException, TableNotFoundException, org.apache.thrift.TException;
+    public void offlineTable(PrincipalToken principalToken, String tableName) throws AccumuloSecurityException, AccumuloException, TableNotFoundException, org.apache.thrift.TException;
 
-    public void onlineTable(PrincipalToken PrincipalToken, String tableName) throws AccumuloSecurityException, AccumuloException, TableNotFoundException, org.apache.thrift.TException;
+    public void onlineTable(PrincipalToken principalToken, String tableName) throws AccumuloSecurityException, AccumuloException, TableNotFoundException, org.apache.thrift.TException;
 
-    public void removeConstraint(PrincipalToken PrincipalToken, String tableName, int constraint) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
+    public void removeConstraint(PrincipalToken principalToken, String tableName, int constraint) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
 
-    public void removeIterator(PrincipalToken PrincipalToken, String tableName, String iterName, Set<IteratorScope> scopes) throws AccumuloSecurityException, AccumuloException, TableNotFoundException, org.apache.thrift.TException;
+    public void removeIterator(PrincipalToken principalToken, String tableName, String iterName, Set<IteratorScope> scopes) throws AccumuloSecurityException, AccumuloException, TableNotFoundException, org.apache.thrift.TException;
 
-    public void removeTableProperty(PrincipalToken PrincipalToken, String tableName, String property) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
+    public void removeTableProperty(PrincipalToken principalToken, String tableName, String property) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
 
-    public void renameTable(PrincipalToken PrincipalToken, String oldTableName, String newTableName) throws AccumuloSecurityException, TableNotFoundException, AccumuloException, TableExistsException, org.apache.thrift.TException;
+    public void renameTable(PrincipalToken principalToken, String oldTableName, String newTableName) throws AccumuloSecurityException, TableNotFoundException, AccumuloException, TableExistsException, org.apache.thrift.TException;
 
-    public void setLocalityGroups(PrincipalToken PrincipalToken, String tableName, Map<String,Set<String>> groups) throws AccumuloException, AccumuloSecurityException, TableNotFoundException, org.apache.thrift.TException;
+    public void setLocalityGroups(PrincipalToken principalToken, String tableName, Map<String,Set<String>> groups) throws AccumuloException, AccumuloSecurityException, TableNotFoundException, org.apache.thrift.TException;
 
-    public void setTableProperty(PrincipalToken PrincipalToken, String tableName, String property, String value) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
+    public void setTableProperty(PrincipalToken principalToken, String tableName, String property, String value) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
 
-    public Set<Range> splitRangeByTablets(PrincipalToken PrincipalToken, String tableName, Range range, int maxSplits) throws AccumuloException, AccumuloSecurityException, TableNotFoundException, org.apache.thrift.TException;
+    public Set<Range> splitRangeByTablets(PrincipalToken principalToken, String tableName, Range range, int maxSplits) throws AccumuloException, AccumuloSecurityException, TableNotFoundException, org.apache.thrift.TException;
 
-    public boolean tableExists(PrincipalToken PrincipalToken, String tableName) throws org.apache.thrift.TException;
+    public boolean tableExists(PrincipalToken principalToken, String tableName) throws org.apache.thrift.TException;
 
-    public Map<String,String> tableIdMap(PrincipalToken PrincipalToken) throws org.apache.thrift.TException;
+    public Map<String,String> tableIdMap(PrincipalToken principalToken) throws org.apache.thrift.TException;
 
-    public void pingTabletServer(PrincipalToken PrincipalToken, String tserver) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
+    public void pingTabletServer(PrincipalToken principalToken, String tserver) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
 
-    public List<ActiveScan> getActiveScans(PrincipalToken PrincipalToken, String tserver) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
+    public List<ActiveScan> getActiveScans(PrincipalToken principalToken, String tserver) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
 
-    public List<ActiveCompaction> getActiveCompactions(PrincipalToken PrincipalToken, String tserver) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
+    public List<ActiveCompaction> getActiveCompactions(PrincipalToken principalToken, String tserver) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
 
-    public Map<String,String> getSiteConfiguration(PrincipalToken PrincipalToken) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
+    public Map<String,String> getSiteConfiguration(PrincipalToken principalToken) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
 
-    public Map<String,String> getSystemConfiguration(PrincipalToken PrincipalToken) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
+    public Map<String,String> getSystemConfiguration(PrincipalToken principalToken) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
 
-    public List<String> getTabletServers(PrincipalToken PrincipalToken) throws org.apache.thrift.TException;
+    public List<String> getTabletServers(PrincipalToken principalToken) throws org.apache.thrift.TException;
 
-    public void removeProperty(PrincipalToken PrincipalToken, String property) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
+    public void removeProperty(PrincipalToken principalToken, String property) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
 
-    public void setProperty(PrincipalToken PrincipalToken, String property, String value) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
+    public void setProperty(PrincipalToken principalToken, String property, String value) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
 
-    public boolean testClassLoad(PrincipalToken PrincipalToken, String className, String asTypeName) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
+    public boolean testClassLoad(PrincipalToken principalToken, String className, String asTypeName) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
 
-    public boolean authenticateUser(PrincipalToken PrincipalToken, String principal, ByteBuffer token) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
+    public boolean authenticateUser(PrincipalToken principalToken, String principal, ByteBuffer token) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
 
-    public void changeUserAuthorizations(PrincipalToken PrincipalToken, String principal, Set<ByteBuffer> authorizations) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
+    public void changeUserAuthorizations(PrincipalToken principalToken, String principal, Set<ByteBuffer> authorizations) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
 
-    public void changePrincipalTokenword(PrincipalToken PrincipalToken, String principal, ByteBuffer token) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
+    public void changePrincipalTokenword(PrincipalToken principalToken, String principal, ByteBuffer token) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
 
-    public void createUser(PrincipalToken PrincipalToken, String principal, ByteBuffer token) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
+    public void createUser(PrincipalToken principalToken, String principal, ByteBuffer token) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
 
-    public void dropUser(PrincipalToken PrincipalToken, String principal) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
+    public void dropUser(PrincipalToken principalToken, String principal) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
 
-    public List<ByteBuffer> getUserAuthorizations(PrincipalToken PrincipalToken, String principal) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
+    public List<ByteBuffer> getUserAuthorizations(PrincipalToken principalToken, String principal) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
 
-    public void grantSystemPermission(PrincipalToken PrincipalToken, String principal, SystemPermission perm) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
+    public void grantSystemPermission(PrincipalToken principalToken, String principal, SystemPermission perm) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
 
-    public void grantTablePermission(PrincipalToken PrincipalToken, String principal, String table, TablePermission perm) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
+    public void grantTablePermission(PrincipalToken principalToken, String principal, String table, TablePermission perm) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
 
-    public boolean hasSystemPermission(PrincipalToken PrincipalToken, String principal, SystemPermission perm) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
+    public boolean hasSystemPermission(PrincipalToken principalToken, String principal, SystemPermission perm) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
 
-    public boolean hasTablePermission(PrincipalToken PrincipalToken, String principal, String table, TablePermission perm) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
+    public boolean hasTablePermission(PrincipalToken principalToken, String principal, String table, TablePermission perm) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
 
-    public Set<String> listUsers(PrincipalToken PrincipalToken) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
+    public Set<String> listUsers(PrincipalToken principalToken) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
 
-    public void revokeSystemPermission(PrincipalToken PrincipalToken, String principal, SystemPermission perm) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
+    public void revokeSystemPermission(PrincipalToken principalToken, String principal, SystemPermission perm) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
 
-    public void revokeTablePermission(PrincipalToken PrincipalToken, String principal, String table, TablePermission perm) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
+    public void revokeTablePermission(PrincipalToken principalToken, String principal, String table, TablePermission perm) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
 
-    public String createBatchScanner(PrincipalToken PrincipalToken, String tableName, BatchScanOptions options) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
+    public String createBatchScanner(PrincipalToken principalToken, String tableName, BatchScanOptions options) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
 
-    public String createScanner(PrincipalToken PrincipalToken, String tableName, ScanOptions options) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
+    public String createScanner(PrincipalToken principalToken, String tableName, ScanOptions options) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
 
     public boolean hasNext(String scanner) throws UnknownScanner, org.apache.thrift.TException;
 
@@ -178,9 +178,9 @@ import org.slf4j.LoggerFactory;
 
     public void closeScanner(String scanner) throws UnknownScanner, org.apache.thrift.TException;
 
-    public void updateAndFlush(PrincipalToken PrincipalToken, String tableName, Map<ByteBuffer,List<ColumnUpdate>> cells) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
+    public void updateAndFlush(PrincipalToken principalToken, String tableName, Map<ByteBuffer,List<ColumnUpdate>> cells) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
 
-    public String createWriter(PrincipalToken PrincipalToken, String tableName, WriterOptions opts) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
+    public String createWriter(PrincipalToken principalToken, String tableName, WriterOptions opts) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException;
 
     public void update(String writer, Map<ByteBuffer,List<ColumnUpdate>> cells) throws org.apache.thrift.TException;
 
@@ -196,125 +196,125 @@ import org.slf4j.LoggerFactory;
 
   public interface AsyncIface {
 
-    public void ping(PrincipalToken PrincipalToken, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.ping_call> resultHandler) throws org.apache.thrift.TException;
+    public void ping(PrincipalToken principalToken, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.ping_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void addConstraint(PrincipalToken PrincipalToken, String tableName, String constraintClassName, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.addConstraint_call> resultHandler) throws org.apache.thrift.TException;
+    public void addConstraint(PrincipalToken principalToken, String tableName, String constraintClassName, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.addConstraint_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void addSplits(PrincipalToken PrincipalToken, String tableName, Set<ByteBuffer> splits, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.addSplits_call> resultHandler) throws org.apache.thrift.TException;
+    public void addSplits(PrincipalToken principalToken, String tableName, Set<ByteBuffer> splits, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.addSplits_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void attachIterator(PrincipalToken PrincipalToken, String tableName, IteratorSetting setting, Set<IteratorScope> scopes, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.attachIterator_call> resultHandler) throws org.apache.thrift.TException;
+    public void attachIterator(PrincipalToken principalToken, String tableName, IteratorSetting setting, Set<IteratorScope> scopes, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.attachIterator_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void checkIteratorConflicts(PrincipalToken PrincipalToken, String tableName, IteratorSetting setting, Set<IteratorScope> scopes, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.checkIteratorConflicts_call> resultHandler) throws org.apache.thrift.TException;
+    public void checkIteratorConflicts(PrincipalToken principalToken, String tableName, IteratorSetting setting, Set<IteratorScope> scopes, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.checkIteratorConflicts_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void clearLocatorCache(PrincipalToken PrincipalToken, String tableName, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.clearLocatorCache_call> resultHandler) throws org.apache.thrift.TException;
+    public void clearLocatorCache(PrincipalToken principalToken, String tableName, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.clearLocatorCache_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void cloneTable(PrincipalToken PrincipalToken, String tableName, String newTableName, boolean flush, Map<String,String> propertiesToSet, Set<String> propertiesToExclude, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.cloneTable_call> resultHandler) throws org.apache.thrift.TException;
+    public void cloneTable(PrincipalToken principalToken, String tableName, String newTableName, boolean flush, Map<String,String> propertiesToSet, Set<String> propertiesToExclude, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.cloneTable_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void compactTable(PrincipalToken PrincipalToken, String tableName, ByteBuffer startRow, ByteBuffer endRow, List<IteratorSetting> iterators, boolean flush, boolean wait, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.compactTable_call> resultHandler) throws org.apache.thrift.TException;
+    public void compactTable(PrincipalToken principalToken, String tableName, ByteBuffer startRow, ByteBuffer endRow, List<IteratorSetting> iterators, boolean flush, boolean wait, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.compactTable_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void cancelCompaction(PrincipalToken PrincipalToken, String tableName, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.cancelCompaction_call> resultHandler) throws org.apache.thrift.TException;
+    public void cancelCompaction(PrincipalToken principalToken, String tableName, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.cancelCompaction_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void createTable(PrincipalToken PrincipalToken, String tableName, boolean versioningIter, TimeType type, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.createTable_call> resultHandler) throws org.apache.thrift.TException;
+    public void createTable(PrincipalToken principalToken, String tableName, boolean versioningIter, TimeType type, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.createTable_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void deleteTable(PrincipalToken PrincipalToken, String tableName, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.deleteTable_call> resultHandler) throws org.apache.thrift.TException;
+    public void deleteTable(PrincipalToken principalToken, String tableName, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.deleteTable_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void deleteRows(PrincipalToken PrincipalToken, String tableName, ByteBuffer startRow, ByteBuffer endRow, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.deleteRows_call> resultHandler) throws org.apache.thrift.TException;
+    public void deleteRows(PrincipalToken principalToken, String tableName, ByteBuffer startRow, ByteBuffer endRow, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.deleteRows_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void exportTable(PrincipalToken PrincipalToken, String tableName, String exportDir, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.exportTable_call> resultHandler) throws org.apache.thrift.TException;
+    public void exportTable(PrincipalToken principalToken, String tableName, String exportDir, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.exportTable_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void flushTable(PrincipalToken PrincipalToken, String tableName, ByteBuffer startRow, ByteBuffer endRow, boolean wait, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.flushTable_call> resultHandler) throws org.apache.thrift.TException;
+    public void flushTable(PrincipalToken principalToken, String tableName, ByteBuffer startRow, ByteBuffer endRow, boolean wait, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.flushTable_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void getLocalityGroups(PrincipalToken PrincipalToken, String tableName, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.getLocalityGroups_call> resultHandler) throws org.apache.thrift.TException;
+    public void getLocalityGroups(PrincipalToken principalToken, String tableName, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.getLocalityGroups_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void getIteratorSetting(PrincipalToken PrincipalToken, String tableName, String iteratorName, IteratorScope scope, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.getIteratorSetting_call> resultHandler) throws org.apache.thrift.TException;
+    public void getIteratorSetting(PrincipalToken principalToken, String tableName, String iteratorName, IteratorScope scope, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.getIteratorSetting_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void getMaxRow(PrincipalToken PrincipalToken, String tableName, Set<ByteBuffer> auths, ByteBuffer startRow, boolean startInclusive, ByteBuffer endRow, boolean endInclusive, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.getMaxRow_call> resultHandler) throws org.apache.thrift.TException;
+    public void getMaxRow(PrincipalToken principalToken, String tableName, Set<ByteBuffer> auths, ByteBuffer startRow, boolean startInclusive, ByteBuffer endRow, boolean endInclusive, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.getMaxRow_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void getTableProperties(PrincipalToken PrincipalToken, String tableName, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.getTableProperties_call> resultHandler) throws org.apache.thrift.TException;
+    public void getTableProperties(PrincipalToken principalToken, String tableName, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.getTableProperties_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void getSplits(PrincipalToken PrincipalToken, String tableName, int maxSplits, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.getSplits_call> resultHandler) throws org.apache.thrift.TException;
+    public void getSplits(PrincipalToken principalToken, String tableName, int maxSplits, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.getSplits_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void importDirectory(PrincipalToken PrincipalToken, String tableName, String importDir, String failureDir, boolean setTime, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.importDirectory_call> resultHandler) throws org.apache.thrift.TException;
+    public void importDirectory(PrincipalToken principalToken, String tableName, String importDir, String failureDir, boolean setTime, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.importDirectory_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void importTable(PrincipalToken PrincipalToken, String tableName, String importDir, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.importTable_call> resultHandler) throws org.apache.thrift.TException;
+    public void importTable(PrincipalToken principalToken, String tableName, String importDir, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.importTable_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void listTables(PrincipalToken PrincipalToken, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.listTables_call> resultHandler) throws org.apache.thrift.TException;
+    public void listTables(PrincipalToken principalToken, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.listTables_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void listIterators(PrincipalToken PrincipalToken, String tableName, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.listIterators_call> resultHandler) throws org.apache.thrift.TException;
+    public void listIterators(PrincipalToken principalToken, String tableName, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.listIterators_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void listConstraints(PrincipalToken PrincipalToken, String tableName, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.listConstraints_call> resultHandler) throws org.apache.thrift.TException;
+    public void listConstraints(PrincipalToken principalToken, String tableName, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.listConstraints_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void mergeTablets(PrincipalToken PrincipalToken, String tableName, ByteBuffer startRow, ByteBuffer endRow, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.mergeTablets_call> resultHandler) throws org.apache.thrift.TException;
+    public void mergeTablets(PrincipalToken principalToken, String tableName, ByteBuffer startRow, ByteBuffer endRow, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.mergeTablets_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void offlineTable(PrincipalToken PrincipalToken, String tableName, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.offlineTable_call> resultHandler) throws org.apache.thrift.TException;
+    public void offlineTable(PrincipalToken principalToken, String tableName, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.offlineTable_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void onlineTable(PrincipalToken PrincipalToken, String tableName, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.onlineTable_call> resultHandler) throws org.apache.thrift.TException;
+    public void onlineTable(PrincipalToken principalToken, String tableName, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.onlineTable_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void removeConstraint(PrincipalToken PrincipalToken, String tableName, int constraint, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.removeConstraint_call> resultHandler) throws org.apache.thrift.TException;
+    public void removeConstraint(PrincipalToken principalToken, String tableName, int constraint, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.removeConstraint_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void removeIterator(PrincipalToken PrincipalToken, String tableName, String iterName, Set<IteratorScope> scopes, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.removeIterator_call> resultHandler) throws org.apache.thrift.TException;
+    public void removeIterator(PrincipalToken principalToken, String tableName, String iterName, Set<IteratorScope> scopes, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.removeIterator_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void removeTableProperty(PrincipalToken PrincipalToken, String tableName, String property, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.removeTableProperty_call> resultHandler) throws org.apache.thrift.TException;
+    public void removeTableProperty(PrincipalToken principalToken, String tableName, String property, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.removeTableProperty_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void renameTable(PrincipalToken PrincipalToken, String oldTableName, String newTableName, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.renameTable_call> resultHandler) throws org.apache.thrift.TException;
+    public void renameTable(PrincipalToken principalToken, String oldTableName, String newTableName, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.renameTable_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void setLocalityGroups(PrincipalToken PrincipalToken, String tableName, Map<String,Set<String>> groups, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.setLocalityGroups_call> resultHandler) throws org.apache.thrift.TException;
+    public void setLocalityGroups(PrincipalToken principalToken, String tableName, Map<String,Set<String>> groups, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.setLocalityGroups_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void setTableProperty(PrincipalToken PrincipalToken, String tableName, String property, String value, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.setTableProperty_call> resultHandler) throws org.apache.thrift.TException;
+    public void setTableProperty(PrincipalToken principalToken, String tableName, String property, String value, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.setTableProperty_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void splitRangeByTablets(PrincipalToken PrincipalToken, String tableName, Range range, int maxSplits, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.splitRangeByTablets_call> resultHandler) throws org.apache.thrift.TException;
+    public void splitRangeByTablets(PrincipalToken principalToken, String tableName, Range range, int maxSplits, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.splitRangeByTablets_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void tableExists(PrincipalToken PrincipalToken, String tableName, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.tableExists_call> resultHandler) throws org.apache.thrift.TException;
+    public void tableExists(PrincipalToken principalToken, String tableName, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.tableExists_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void tableIdMap(PrincipalToken PrincipalToken, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.tableIdMap_call> resultHandler) throws org.apache.thrift.TException;
+    public void tableIdMap(PrincipalToken principalToken, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.tableIdMap_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void pingTabletServer(PrincipalToken PrincipalToken, String tserver, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.pingTabletServer_call> resultHandler) throws org.apache.thrift.TException;
+    public void pingTabletServer(PrincipalToken principalToken, String tserver, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.pingTabletServer_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void getActiveScans(PrincipalToken PrincipalToken, String tserver, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.getActiveScans_call> resultHandler) throws org.apache.thrift.TException;
+    public void getActiveScans(PrincipalToken principalToken, String tserver, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.getActiveScans_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void getActiveCompactions(PrincipalToken PrincipalToken, String tserver, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.getActiveCompactions_call> resultHandler) throws org.apache.thrift.TException;
+    public void getActiveCompactions(PrincipalToken principalToken, String tserver, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.getActiveCompactions_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void getSiteConfiguration(PrincipalToken PrincipalToken, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.getSiteConfiguration_call> resultHandler) throws org.apache.thrift.TException;
+    public void getSiteConfiguration(PrincipalToken principalToken, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.getSiteConfiguration_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void getSystemConfiguration(PrincipalToken PrincipalToken, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.getSystemConfiguration_call> resultHandler) throws org.apache.thrift.TException;
+    public void getSystemConfiguration(PrincipalToken principalToken, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.getSystemConfiguration_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void getTabletServers(PrincipalToken PrincipalToken, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.getTabletServers_call> resultHandler) throws org.apache.thrift.TException;
+    public void getTabletServers(PrincipalToken principalToken, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.getTabletServers_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void removeProperty(PrincipalToken PrincipalToken, String property, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.removeProperty_call> resultHandler) throws org.apache.thrift.TException;
+    public void removeProperty(PrincipalToken principalToken, String property, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.removeProperty_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void setProperty(PrincipalToken PrincipalToken, String property, String value, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.setProperty_call> resultHandler) throws org.apache.thrift.TException;
+    public void setProperty(PrincipalToken principalToken, String property, String value, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.setProperty_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void testClassLoad(PrincipalToken PrincipalToken, String className, String asTypeName, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.testClassLoad_call> resultHandler) throws org.apache.thrift.TException;
+    public void testClassLoad(PrincipalToken principalToken, String className, String asTypeName, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.testClassLoad_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void authenticateUser(PrincipalToken PrincipalToken, String principal, ByteBuffer token, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.authenticateUser_call> resultHandler) throws org.apache.thrift.TException;
+    public void authenticateUser(PrincipalToken principalToken, String principal, ByteBuffer token, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.authenticateUser_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void changeUserAuthorizations(PrincipalToken PrincipalToken, String principal, Set<ByteBuffer> authorizations, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.changeUserAuthorizations_call> resultHandler) throws org.apache.thrift.TException;
+    public void changeUserAuthorizations(PrincipalToken principalToken, String principal, Set<ByteBuffer> authorizations, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.changeUserAuthorizations_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void changePrincipalTokenword(PrincipalToken PrincipalToken, String principal, ByteBuffer token, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.changePrincipalTokenword_call> resultHandler) throws org.apache.thrift.TException;
+    public void changePrincipalTokenword(PrincipalToken principalToken, String principal, ByteBuffer token, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.changePrincipalTokenword_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void createUser(PrincipalToken PrincipalToken, String principal, ByteBuffer token, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.createUser_call> resultHandler) throws org.apache.thrift.TException;
+    public void createUser(PrincipalToken principalToken, String principal, ByteBuffer token, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.createUser_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void dropUser(PrincipalToken PrincipalToken, String principal, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.dropUser_call> resultHandler) throws org.apache.thrift.TException;
+    public void dropUser(PrincipalToken principalToken, String principal, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.dropUser_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void getUserAuthorizations(PrincipalToken PrincipalToken, String principal, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.getUserAuthorizations_call> resultHandler) throws org.apache.thrift.TException;
+    public void getUserAuthorizations(PrincipalToken principalToken, String principal, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.getUserAuthorizations_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void grantSystemPermission(PrincipalToken PrincipalToken, String principal, SystemPermission perm, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.grantSystemPermission_call> resultHandler) throws org.apache.thrift.TException;
+    public void grantSystemPermission(PrincipalToken principalToken, String principal, SystemPermission perm, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.grantSystemPermission_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void grantTablePermission(PrincipalToken PrincipalToken, String principal, String table, TablePermission perm, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.grantTablePermission_call> resultHandler) throws org.apache.thrift.TException;
+    public void grantTablePermission(PrincipalToken principalToken, String principal, String table, TablePermission perm, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.grantTablePermission_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void hasSystemPermission(PrincipalToken PrincipalToken, String principal, SystemPermission perm, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.hasSystemPermission_call> resultHandler) throws org.apache.thrift.TException;
+    public void hasSystemPermission(PrincipalToken principalToken, String principal, SystemPermission perm, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.hasSystemPermission_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void hasTablePermission(PrincipalToken PrincipalToken, String principal, String table, TablePermission perm, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.hasTablePermission_call> resultHandler) throws org.apache.thrift.TException;
+    public void hasTablePermission(PrincipalToken principalToken, String principal, String table, TablePermission perm, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.hasTablePermission_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void listUsers(PrincipalToken PrincipalToken, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.listUsers_call> resultHandler) throws org.apache.thrift.TException;
+    public void listUsers(PrincipalToken principalToken, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.listUsers_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void revokeSystemPermission(PrincipalToken PrincipalToken, String principal, SystemPermission perm, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.revokeSystemPermission_call> resultHandler) throws org.apache.thrift.TException;
+    public void revokeSystemPermission(PrincipalToken principalToken, String principal, SystemPermission perm, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.revokeSystemPermission_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void revokeTablePermission(PrincipalToken PrincipalToken, String principal, String table, TablePermission perm, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.revokeTablePermission_call> resultHandler) throws org.apache.thrift.TException;
+    public void revokeTablePermission(PrincipalToken principalToken, String principal, String table, TablePermission perm, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.revokeTablePermission_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void createBatchScanner(PrincipalToken PrincipalToken, String tableName, BatchScanOptions options, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.createBatchScanner_call> resultHandler) throws org.apache.thrift.TException;
+    public void createBatchScanner(PrincipalToken principalToken, String tableName, BatchScanOptions options, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.createBatchScanner_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void createScanner(PrincipalToken PrincipalToken, String tableName, ScanOptions options, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.createScanner_call> resultHandler) throws org.apache.thrift.TException;
+    public void createScanner(PrincipalToken principalToken, String tableName, ScanOptions options, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.createScanner_call> resultHandler) throws org.apache.thrift.TException;
 
     public void hasNext(String scanner, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.hasNext_call> resultHandler) throws org.apache.thrift.TException;
 
@@ -324,9 +324,9 @@ import org.slf4j.LoggerFactory;
 
     public void closeScanner(String scanner, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.closeScanner_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void updateAndFlush(PrincipalToken PrincipalToken, String tableName, Map<ByteBuffer,List<ColumnUpdate>> cells, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.updateAndFlush_call> resultHandler) throws org.apache.thrift.TException;
+    public void updateAndFlush(PrincipalToken principalToken, String tableName, Map<ByteBuffer,List<ColumnUpdate>> cells, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.updateAndFlush_call> resultHandler) throws org.apache.thrift.TException;
 
-    public void createWriter(PrincipalToken PrincipalToken, String tableName, WriterOptions opts, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.createWriter_call> resultHandler) throws org.apache.thrift.TException;
+    public void createWriter(PrincipalToken principalToken, String tableName, WriterOptions opts, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.createWriter_call> resultHandler) throws org.apache.thrift.TException;
 
     public void update(String writer, Map<ByteBuffer,List<ColumnUpdate>> cells, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.update_call> resultHandler) throws org.apache.thrift.TException;
 
@@ -360,16 +360,16 @@ import org.slf4j.LoggerFactory;
       super(iprot, oprot);
     }
 
-    public boolean ping(PrincipalToken PrincipalToken) throws org.apache.thrift.TException
+    public boolean ping(PrincipalToken principalToken) throws org.apache.thrift.TException
     {
-      send_ping(PrincipalToken);
+      send_ping(principalToken);
       return recv_ping();
     }
 
-    public void send_ping(PrincipalToken PrincipalToken) throws org.apache.thrift.TException
+    public void send_ping(PrincipalToken principalToken) throws org.apache.thrift.TException
     {
       ping_args args = new ping_args();
-      args.setPrincipalToken(PrincipalToken);
+      args.setPrincipalToken(principalToken);
       sendBase("ping", args);
     }
 
@@ -383,16 +383,16 @@ import org.slf4j.LoggerFactory;
       throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "ping failed: unknown result");
     }
 
-    public int addConstraint(PrincipalToken PrincipalToken, String tableName, String constraintClassName) throws AccumuloException, AccumuloSecurityException, TableNotFoundException, org.apache.thrift.TException
+    public int addConstraint(PrincipalToken principalToken, String tableName, String constraintClassName) throws AccumuloException, AccumuloSecurityException, TableNotFoundException, org.apache.thrift.TException
     {
-      send_addConstraint(PrincipalToken, tableName, constraintClassName);
+      send_addConstraint(principalToken, tableName, constraintClassName);
       return recv_addConstraint();
     }
 
-    public void send_addConstraint(PrincipalToken PrincipalToken, String tableName, String constraintClassName) throws org.apache.thrift.TException
+    public void send_addConstraint(PrincipalToken principalToken, String tableName, String constraintClassName) throws org.apache.thrift.TException
     {
       addConstraint_args args = new addConstraint_args();
-      args.setPrincipalToken(PrincipalToken);
+      args.setPrincipalToken(principalToken);
       args.setTableName(tableName);
       args.setConstraintClassName(constraintClassName);
       sendBase("addConstraint", args);
@@ -417,16 +417,16 @@ import org.slf4j.LoggerFactory;
       throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "addConstraint failed: unknown result");
     }
 
-    public void addSplits(PrincipalToken PrincipalToken, String tableName, Set<ByteBuffer> splits) throws TableNotFoundException, AccumuloException, AccumuloSecurityException, org.apache.thrift.TException
+    public void addSplits(PrincipalToken principalToken, String tableName, Set<ByteBuffer> splits) throws TableNotFoundException, AccumuloException, AccumuloSecurityException, org.apache.thrift.TException
     {
-      send_addSplits(PrincipalToken, tableName, splits);
+      send_addSplits(principalToken, tableName, splits);
       recv_addSplits();
     }
 
-    public void send_addSplits(PrincipalToken PrincipalToken, String tableName, Set<ByteBuffer> splits) throws org.apache.thrift.TException
+    public void send_addSplits(PrincipalToken principalToken, String tableName, Set<ByteBuffer> splits) throws org.apache.thrift.TException
     {
       addSplits_args args = new addSplits_args();
-      args.setPrincipalToken(PrincipalToken);
+      args.setPrincipalToken(principalToken);
       args.setTableName(tableName);
       args.setSplits(splits);
       sendBase("addSplits", args);
@@ -448,16 +448,16 @@ import org.slf4j.LoggerFactory;
       return;
     }
 
-    public void attachIterator(PrincipalToken PrincipalToken, String tableName, IteratorSetting setting, Set<IteratorScope> scopes) throws AccumuloSecurityException, AccumuloException, TableNotFoundException, org.apache.thrift.TException
+    public void attachIterator(PrincipalToken principalToken, String tableName, IteratorSetting setting, Set<IteratorScope> scopes) throws AccumuloSecurityException, AccumuloException, TableNotFoundException, org.apache.thrift.TException
     {
-      send_attachIterator(PrincipalToken, tableName, setting, scopes);
+      send_attachIterator(principalToken, tableName, setting, scopes);
       recv_attachIterator();
     }
 
-    public void send_attachIterator(PrincipalToken PrincipalToken, String tableName, IteratorSetting setting, Set<IteratorScope> scopes) throws org.apache.thrift.TException
+    public void send_attachIterator(PrincipalToken principalToken, String tableName, IteratorSetting setting, Set<IteratorScope> scopes) throws org.apache.thrift.TException
     {
       attachIterator_args args = new attachIterator_args();
-      args.setPrincipalToken(PrincipalToken);
+      args.setPrincipalToken(principalToken);
       args.setTableName(tableName);
       args.setSetting(setting);
       args.setScopes(scopes);
@@ -480,16 +480,16 @@ import org.slf4j.LoggerFactory;
       return;
     }
 
-    public void checkIteratorConflicts(PrincipalToken PrincipalToken, String tableName, IteratorSetting setting, Set<IteratorScope> scopes) throws AccumuloException, TableNotFoundException, org.apache.thrift.TException
+    public void checkIteratorConflicts(PrincipalToken principalToken, String tableName, IteratorSetting setting, Set<IteratorScope> scopes) throws AccumuloException, TableNotFoundException, org.apache.thrift.TException
     {
-      send_checkIteratorConflicts(PrincipalToken, tableName, setting, scopes);
+      send_checkIteratorConflicts(principalToken, tableName, setting, scopes);
       recv_checkIteratorConflicts();
     }
 
-    public void send_checkIteratorConflicts(PrincipalToken PrincipalToken, String tableName, IteratorSetting setting, Set<IteratorScope> scopes) throws org.apache.thrift.TException
+    public void send_checkIteratorConflicts(PrincipalToken principalToken, String tableName, IteratorSetting setting, Set<IteratorScope> scopes) throws org.apache.thrift.TException
     {
       checkIteratorConflicts_args args = new checkIteratorConflicts_args();
-      args.setPrincipalToken(PrincipalToken);
+      args.setPrincipalToken(principalToken);
       args.setTableName(tableName);
       args.setSetting(setting);
       args.setScopes(scopes);
@@ -509,16 +509,16 @@ import org.slf4j.LoggerFactory;
       return;
     }
 
-    public void clearLocatorCache(PrincipalToken PrincipalToken, String tableName) throws TableNotFoundException, org.apache.thrift.TException
+    public void clearLocatorCache(PrincipalToken principalToken, String tableName) throws TableNotFoundException, org.apache.thrift.TException
     {
-      send_clearLocatorCache(PrincipalToken, tableName);
+      send_clearLocatorCache(principalToken, tableName);
       recv_clearLocatorCache();
     }
 
-    public void send_clearLocatorCache(PrincipalToken PrincipalToken, String tableName) throws org.apache.thrift.TException
+    public void send_clearLocatorCache(PrincipalToken principalToken, String tableName) throws org.apache.thrift.TException
     {
       clearLocatorCache_args args = new clearLocatorCache_args();
-      args.setPrincipalToken(PrincipalToken);
+      args.setPrincipalToken(principalToken);
       args.setTableName(tableName);
       sendBase("clearLocatorCache", args);
     }
@@ -533,16 +533,16 @@ import org.slf4j.LoggerFactory;
       return;
     }
 
-    public void cloneTable(PrincipalToken PrincipalToken, String tableName, String newTableName, boolean flush, Map<String,String> propertiesToSet, Set<String> propertiesToExclude) throws AccumuloException, AccumuloSecurityException, TableNotFoundException, TableExistsException, org.apache.thrift.TException
+    public void cloneTable(PrincipalToken principalToken, String tableName, String newTableName, boolean flush, Map<String,String> propertiesToSet, Set<String> propertiesToExclude) throws AccumuloException, AccumuloSecurityException, TableNotFoundException, TableExistsException, org.apache.thrift.TException
     {
-      send_cloneTable(PrincipalToken, tableName, newTableName, flush, propertiesToSet, propertiesToExclude);
+      send_cloneTable(principalToken, tableName, newTableName, flush, propertiesToSet, propertiesToExclude);
       recv_cloneTable();
     }
 
-    public void send_cloneTable(PrincipalToken PrincipalToken, String tableName, String newTableName, boolean flush, Map<String,String> propertiesToSet, Set<String> propertiesToExclude) throws org.apache.thrift.TException
+    public void send_cloneTable(PrincipalToken principalToken, String tableName, String newTableName, boolean flush, Map<String,String> propertiesToSet, Set<String> propertiesToExclude) throws org.apache.thrift.TException
     {
       cloneTable_args args = new cloneTable_args();
-      args.setPrincipalToken(PrincipalToken);
+      args.setPrincipalToken(principalToken);
       args.setTableName(tableName);
       args.setNewTableName(newTableName);
       args.setFlush(flush);
@@ -570,16 +570,16 @@ import org.slf4j.LoggerFactory;
       return;
     }
 
-    public void compactTable(PrincipalToken PrincipalToken, String tableName, ByteBuffer startRow, ByteBuffer endRow, List<IteratorSetting> iterators, boolean flush, boolean wait) throws AccumuloSecurityException, TableNotFoundException, AccumuloException, org.apache.thrift.TException
+    public void compactTable(PrincipalToken principalToken, String tableName, ByteBuffer startRow, ByteBuffer endRow, List<IteratorSetting> iterators, boolean flush, boolean wait) throws AccumuloSecurityException, TableNotFoundException, AccumuloException, org.apache.thrift.TException
     {
-      send_compactTable(PrincipalToken, tableName, startRow, endRow, iterators, flush, wait);
+      send_compactTable(principalToken, tableName, startRow, endRow, iterators, flush, wait);
       recv_compactTable();
     }
 
-    public void send_compactTable(PrincipalToken PrincipalToken, String tableName, ByteBuffer startRow, ByteBuffer endRow, List<IteratorSetting> iterators, boolean flush, boolean wait) throws org.apache.thrift.TException
+    public void send_compactTable(PrincipalToken principalToken, String tableName, ByteBuffer startRow, ByteBuffer endRow, List<IteratorSetting> iterators, boolean flush, boolean wait) throws org.apache.thrift.TException
     {
       compactTable_args args = new compactTable_args();
-      args.setPrincipalToken(PrincipalToken);
+      args.setPrincipalToken(principalToken);
       args.setTableName(tableName);
       args.setStartRow(startRow);
       args.setEndRow(endRow);
@@ -605,16 +605,16 @@ import org.slf4j.LoggerFactory;
       return;
     }
 
-    public void cancelCompaction(PrincipalToken PrincipalToken, String tableName) throws AccumuloSecurityException, TableNotFoundException, AccumuloException, org.apache.thrift.TException
+    public void cancelCompaction(PrincipalToken principalToken, String tableName) throws AccumuloSecurityException, TableNotFoundException, AccumuloException, org.apache.thrift.TException
     {
-      send_cancelCompaction(PrincipalToken, tableName);
+      send_cancelCompaction(principalToken, tableName);
       recv_cancelCompaction();
     }
 
-    public void send_cancelCompaction(PrincipalToken PrincipalToken, String tableName) throws org.apache.thrift.TException
+    public void send_cancelCompaction(PrincipalToken principalToken, String tableName) throws org.apache.thrift.TException
     {
       cancelCompaction_args args = new cancelCompaction_args();
-      args.setPrincipalToken(PrincipalToken);
+      args.setPrincipalToken(principalToken);
       args.setTableName(tableName);
       sendBase("cancelCompaction", args);
     }
@@ -635,16 +635,16 @@ import org.slf4j.LoggerFactory;
       return;
     }
 
-    public void createTable(PrincipalToken PrincipalToken, String tableName, boolean versioningIter, TimeType type) throws AccumuloException, AccumuloSecurityException, TableExistsException, org.apache.thrift.TException
+    public void createTable(PrincipalToken principalToken, String tableName, boolean versioningIter, TimeType type) throws AccumuloException, AccumuloSecurityException, TableExistsException, org.apache.thrift.TException
     {
-      send_createTable(PrincipalToken, tableName, versioningIter, type);
+      send_createTable(principalToken, tableName, versioningIter, type);
       recv_createTable();
     }
 
-    public void send_createTable(PrincipalToken PrincipalToken, String tableName, boolean versioningIter, TimeType type) throws org.apache.thrift.TException
+    public void send_createTable(PrincipalToken principalToken, String tableName, boolean versioningIter, TimeType type) throws org.apache.thrift.TException
     {
       createTable_args args = new createTable_args();
-      args.setPrincipalToken(PrincipalToken);
+      args.setPrincipalToken(principalToken);
       args.setTableName(tableName);
       args.setVersioningIter(versioningIter);
       args.setType(type);
@@ -667,16 +667,16 @@ import org.slf4j.LoggerFactory;
       return;
     }
 
-    public void deleteTable(PrincipalToken PrincipalToken, String tableName) throws AccumuloException, AccumuloSecurityException, TableNotFoundException, org.apache.thrift.TException
+    public void deleteTable(PrincipalToken principalToken, String tableName) throws AccumuloException, AccumuloSecurityException, TableNotFoundException, org.apache.thrift.TException
     {
-      send_deleteTable(PrincipalToken, tableName);
+      send_deleteTable(principalToken, tableName);
       recv_deleteTable();
     }
 
-    public void send_deleteTable(PrincipalToken PrincipalToken, String tableName) throws org.apache.thrift.TException
+    public void send_deleteTable(PrincipalToken principalToken, String tableName) throws org.apache.thrift.TException
     {
       deleteTable_args args = new deleteTable_args();
-      args.setPrincipalToken(PrincipalToken);
+      args.setPrincipalToken(principalToken);
       args.setTableName(tableName);
       sendBase("deleteTable", args);
     }
@@ -697,16 +697,16 @@ import org.slf4j.LoggerFactory;
       return;
     }
 
-    public void deleteRows(PrincipalToken PrincipalToken, String tableName, ByteBuffer startRow, ByteBuffer endRow) throws AccumuloException, AccumuloSecurityException, TableNotFoundException, org.apache.thrift.TException
+    public void deleteRows(PrincipalToken principalToken, String tableName, ByteBuffer startRow, ByteBuffer endRow) throws AccumuloException, AccumuloSecurityException, TableNotFoundException, org.apache.thrift.TException
     {
-      send_deleteRows(PrincipalToken, tableName, startRow, endRow);
+      send_deleteRows(principalToken, tableName, startRow, endRow);
       recv_deleteRows();
     }
 
-    public void send_deleteRows(PrincipalToken PrincipalToken, String tableName, ByteBuffer startRow, ByteBuffer endRow) throws org.apache.thrift.TException
+    public void send_deleteRows(PrincipalToken principalToken, String tableName, ByteBuffer startRow, ByteBuffer endRow) throws org.apache.thrift.TException
     {
       deleteRows_args args = new deleteRows_args();
-      args.setPrincipalToken(PrincipalToken);
+      args.setPrincipalToken(principalToken);
       args.setTableName(tableName);
       args.setStartRow(startRow);
       args.setEndRow(endRow);
@@ -729,16 +729,16 @@ import org.slf4j.LoggerFactory;
       return;
     }
 
-    public void exportTable(PrincipalToken PrincipalToken, String tableName, String exportDir) throws TableNotFoundException, AccumuloException, AccumuloSecurityException, org.apache.thrift.TException
+    public void exportTable(PrincipalToken principalToken, String tableName, String exportDir) throws TableNotFoundException, AccumuloException, AccumuloSecurityException, org.apache.thrift.TException
     {
-      send_exportTable(PrincipalToken, tableName, exportDir);
+      send_exportTable(principalToken, tableName, exportDir);
       recv_exportTable();
     }
 
-    public void send_exportTable(PrincipalToken PrincipalToken, String tableName, String exportDir) throws org.apache.thrift.TException
+    public void send_exportTable(PrincipalToken principalToken, String tableName, String exportDir) throws org.apache.thrift.TException
     {
       exportTable_args args = new exportTable_args();
-      args.setPrincipalToken(PrincipalToken);
+      args.setPrincipalToken(principalToken);
       args.setTableName(tableName);
       args.setExportDir(exportDir);
       sendBase("exportTable", args);
@@ -760,16 +760,16 @@ import org.slf4j.LoggerFactory;
       return;
     }
 
-    public void flushTable(PrincipalToken PrincipalToken, String tableName, ByteBuffer startRow, ByteBuffer endRow, boolean wait) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException
+    public void flushTable(PrincipalToken principalToken, String tableName, ByteBuffer startRow, ByteBuffer endRow, boolean wait) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException
     {
-      send_flushTable(PrincipalToken, tableName, startRow, endRow, wait);
+      send_flushTable(principalToken, tableName, startRow, endRow, wait);
       recv_flushTable();
     }
 
-    public void send_flushTable(PrincipalToken PrincipalToken, String tableName, ByteBuffer startRow, ByteBuffer endRow, boolean wait) throws org.apache.thrift.TException
+    public void send_flushTable(PrincipalToken principalToken, String tableName, ByteBuffer startRow, ByteBuffer endRow, boolean wait) throws org.apache.thrift.TException
     {
       flushTable_args args = new flushTable_args();
-      args.setPrincipalToken(PrincipalToken);
+      args.setPrincipalToken(principalToken);
       args.setTableName(tableName);
       args.setStartRow(startRow);
       args.setEndRow(endRow);
@@ -790,16 +790,16 @@ import org.slf4j.LoggerFactory;
       return;
     }
 
-    public Map<String,Set<String>> getLocalityGroups(PrincipalToken PrincipalToken, String tableName) throws AccumuloException, TableNotFoundException, org.apache.thrift.TException
+    public Map<String,Set<String>> getLocalityGroups(PrincipalToken principalToken, String tableName) throws AccumuloException, TableNotFoundException, org.apache.thrift.TException
     {
-      send_getLocalityGroups(PrincipalToken, tableName);
+      send_getLocalityGroups(principalToken, tableName);
       return recv_getLocalityGroups();
     }
 
-    public void send_getLocalityGroups(PrincipalToken PrincipalToken, String tableName) throws org.apache.thrift.TException
+    public void send_getLocalityGroups(PrincipalToken principalToken, String tableName) throws org.apache.thrift.TException
     {
       getLocalityGroups_args args = new getLocalityGroups_args();
-      args.setPrincipalToken(PrincipalToken);
+      args.setPrincipalToken(principalToken);
       args.setTableName(tableName);
       sendBase("getLocalityGroups", args);
     }
@@ -820,16 +820,16 @@ import org.slf4j.LoggerFactory;
       throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getLocalityGroups failed: unknown result");
     }
 
-    public IteratorSetting getIteratorSetting(PrincipalToken PrincipalToken, String tableName, String iteratorName, IteratorScope scope) throws AccumuloSecurityException, AccumuloException, TableNotFoundException, org.apache.thrift.TException
+    public IteratorSetting getIteratorSetting(PrincipalToken principalToken, String tableName, String iteratorName, IteratorScope scope) throws AccumuloSecurityException, AccumuloException, TableNotFoundException, org.apache.thrift.TException
     {
-      send_getIteratorSetting(PrincipalToken, tableName, iteratorName, scope);
+      send_getIteratorSetting(principalToken, tableName, iteratorName, scope);
       return recv_getIteratorSetting();
     }
 
-    public void send_getIteratorSetting(PrincipalToken PrincipalToken, String tableName, String iteratorName, IteratorScope scope) throws org.apache.thrift.TException
+    public void send_getIteratorSetting(PrincipalToken principalToken, String tableName, String iteratorName, IteratorScope scope) throws org.apache.thrift.TException
     {
       getIteratorSetting_args args = new getIteratorSetting_args();
-      args.setPrincipalToken(PrincipalToken);
+      args.setPrincipalToken(principalToken);
       args.setTableName(tableName);
       args.setIteratorName(iteratorName);
       args.setScope(scope);
@@ -855,16 +855,16 @@ import org.slf4j.LoggerFactory;
       throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getIteratorSetting failed: unknown result");
     }
 
-    public ByteBuffer getMaxRow(PrincipalToken PrincipalToken, String tableName, Set<ByteBuffer> auths, ByteBuffer startRow, boolean startInclusive, ByteBuffer endRow, boolean endInclusive) throws TableNotFoundException, AccumuloException, AccumuloSecurityException, org.apache.thrift.TException
+    public ByteBuffer getMaxRow(PrincipalToken principalToken, String tableName, Set<ByteBuffer> auths, ByteBuffer startRow, boolean startInclusive, ByteBuffer endRow, boolean endInclusive) throws TableNotFoundException, AccumuloException, AccumuloSecurityException, org.apache.thrift.TException
     {
-      send_getMaxRow(PrincipalToken, tableName, auths, startRow, startInclusive, endRow, endInclusive);
+      send_getMaxRow(principalToken, tableName, auths, startRow, startInclusive, endRow, endInclusive);
       return recv_getMaxRow();
     }
 
-    public void send_getMaxRow(PrincipalToken PrincipalToken, String tableName, Set<ByteBuffer> auths, ByteBuffer startRow, boolean startInclusive, ByteBuffer endRow, boolean endInclusive) throws org.apache.thrift.TException
+    public void send_getMaxRow(PrincipalToken principalToken, String tableName, Set<ByteBuffer> auths, ByteBuffer startRow, boolean startInclusive, ByteBuffer endRow, boolean endInclusive) throws org.apache.thrift.TException
     {
       getMaxRow_args args = new getMaxRow_args();
-      args.setPrincipalToken(PrincipalToken);
+      args.setPrincipalToken(principalToken);
       args.setTableName(tableName);
       args.setAuths(auths);
       args.setStartRow(startRow);
@@ -893,16 +893,16 @@ import org.slf4j.LoggerFactory;
       throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getMaxRow failed: unknown result");
     }
 
-    public Map<String,String> getTableProperties(PrincipalToken PrincipalToken, String tableName) throws AccumuloException, TableNotFoundException, org.apache.thrift.TException
+    public Map<String,String> getTableProperties(PrincipalToken principalToken, String tableName) throws AccumuloException, TableNotFoundException, org.apache.thrift.TException
     {
-      send_getTableProperties(PrincipalToken, tableName);
+      send_getTableProperties(principalToken, tableName);
       return recv_getTableProperties();
     }
 
-    public void send_getTableProperties(PrincipalToken PrincipalToken, String tableName) throws org.apache.thrift.TException
+    public void send_getTableProperties(PrincipalToken principalToken, String tableName) throws org.apache.thrift.TException
     {
       getTableProperties_args args = new getTableProperties_args();
-      args.setPrincipalToken(PrincipalToken);
+      args.setPrincipalToken(principalToken);
       args.setTableName(tableName);
       sendBase("getTableProperties", args);
     }
@@ -923,16 +923,16 @@ import org.slf4j.LoggerFactory;
       throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getTableProperties failed: unknown result");
     }
 
-    public List<ByteBuffer> getSplits(PrincipalToken PrincipalToken, String tableName, int maxSplits) throws TableNotFoundException, org.apache.thrift.TException
+    public List<ByteBuffer> getSplits(PrincipalToken principalToken, String tableName, int maxSplits) throws TableNotFoundException, org.apache.thrift.TException
     {
-      send_getSplits(PrincipalToken, tableName, maxSplits);
+      send_getSplits(principalToken, tableName, maxSplits);
       return recv_getSplits();
     }
 
-    public void send_getSplits(PrincipalToken PrincipalToken, String tableName, int maxSplits) throws org.apache.thrift.TException
+    public void send_getSplits(PrincipalToken principalToken, String tableName, int maxSplits) throws org.apache.thrift.TException
     {
       getSplits_args args = new getSplits_args();
-      args.setPrincipalToken(PrincipalToken);
+      args.setPrincipalToken(principalToken);
       args.setTableName(tableName);
       args.setMaxSplits(maxSplits);
       sendBase("getSplits", args);
@@ -951,16 +951,16 @@ import org.slf4j.LoggerFactory;
       throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getSplits failed: unknown result");
     }
 
-    public void importDirectory(PrincipalToken PrincipalToken, String tableName, String importDir, String failureDir, boolean setTime) throws TableNotFoundException, AccumuloException, AccumuloSecurityException, org.apache.thrift.TException
+    public void importDirectory(PrincipalToken principalToken, String tableName, String importDir, String failureDir, boolean setTime) throws TableNotFoundException, AccumuloException, AccumuloSecurityException, org.apache.thrift.TException
     {
-      send_importDirectory(PrincipalToken, tableName, importDir, failureDir, setTime);
+      send_importDirectory(principalToken, tableName, importDir, failureDir, setTime);
       recv_importDirectory();
     }
 
-    public void send_importDirectory(PrincipalToken PrincipalToken, String tableName, String importDir, String failureDir, boolean setTime) throws org.apache.thrift.TException
+    public void send_importDirectory(PrincipalToken principalToken, String tableName, String importDir, String failureDir, boolean setTime) throws org.apache.thrift.TException
     {
       importDirectory_args args = new importDirectory_args();
-      args.setPrincipalToken(PrincipalToken);
+      args.setPrincipalToken(principalToken);
       args.setTableName(tableName);
       args.setImportDir(importDir);
       args.setFailureDir(failureDir);
@@ -984,16 +984,16 @@ import org.slf4j.LoggerFactory;
       return;
     }
 
-    public void importTable(PrincipalToken PrincipalToken, String tableName, String importDir) throws TableExistsException, AccumuloException, AccumuloSecurityException, org.apache.thrift.TException
+    public void importTable(PrincipalToken principalToken, String tableName, String importDir) throws TableExistsException, AccumuloException, AccumuloSecurityException, org.apache.thrift.TException
     {
-      send_importTable(PrincipalToken, tableName, importDir);
+      send_importTable(principalToken, tableName, importDir);
       recv_importTable();
     }
 
-    public void send_importTable(PrincipalToken PrincipalToken, String tableName, String importDir) throws org.apache.thrift.TException
+    public void send_importTable(PrincipalToken principalToken, String tableName, String importDir) throws org.apache.thrift.TException
     {
       importTable_args args = new importTable_args();
-      args.setPrincipalToken(PrincipalToken);
+      args.setPrincipalToken(principalToken);
       args.setTableName(tableName);
       args.setImportDir(importDir);
       sendBase("importTable", args);
@@ -1015,16 +1015,16 @@ import org.slf4j.LoggerFactory;
       return;
     }
 
-    public Set<String> listTables(PrincipalToken PrincipalToken) throws org.apache.thrift.TException
+    public Set<String> listTables(PrincipalToken principalToken) throws org.apache.thrift.TException
     {
-      send_listTables(PrincipalToken);
+      send_listTables(principalToken);
       return recv_listTables();
     }
 
-    public void send_listTables(PrincipalToken PrincipalToken) throws org.apache.thrift.TException
+    public void send_listTables(PrincipalToken principalToken) throws org.apache.thrift.TException
     {
       listTables_args args = new listTables_args();
-      args.setPrincipalToken(PrincipalToken);
+      args.setPrincipalToken(principalToken);
       sendBase("listTables", args);
     }
 
@@ -1038,16 +1038,16 @@ import org.slf4j.LoggerFactory;
       throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "listTables failed: unknown result");
     }
 
-    public Map<String,Set<IteratorScope>> listIterators(PrincipalToken PrincipalToken, String tableName) throws AccumuloSecurityException, AccumuloException, TableNotFoundException, org.apache.thrift.TException
+    public Map<String,Set<IteratorScope>> listIterators(PrincipalToken principalToken, String tableName) throws AccumuloSecurityException, AccumuloException, TableNotFoundException, org.apache.thrift.TException
     {
-      send_listIterators(PrincipalToken, tableName);
+      send_listIterators(principalToken, tableName);
       return recv_listIterators();
     }
 
-    public void send_listIterators(PrincipalToken PrincipalToken, String tableName) throws org.apache.thrift.TException
+    public void send_listIterators(PrincipalToken principalToken, String tableName) throws org.apache.thrift.TException
     {
       listIterators_args args = new listIterators_args();
-      args.setPrincipalToken(PrincipalToken);
+      args.setPrincipalToken(principalToken);
       args.setTableName(tableName);
       sendBase("listIterators", args);
     }
@@ -1071,16 +1071,16 @@ import org.slf4j.LoggerFactory;
       throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "listIterators failed: unknown result");
     }
 
-    public Map<String,Integer> listConstraints(PrincipalToken PrincipalToken, String tableName) throws AccumuloException, TableNotFoundException, org.apache.thrift.TException
+    public Map<String,Integer> listConstraints(PrincipalToken principalToken, String tableName) throws AccumuloException, TableNotFoundException, org.apache.thrift.TException
     {
-      send_listConstraints(PrincipalToken, tableName);
+      send_listConstraints(principalToken, tableName);
       return recv_listConstraints();
     }
 
-    public void send_listConstraints(PrincipalToken PrincipalToken, String tableName) throws org.apache.thrift.TException
+    public void send_listConstraints(PrincipalToken principalToken, String tableName) throws org.apache.thrift.TException
     {
       listConstraints_args args = new listConstraints_args();
-      args.setPrincipalToken(PrincipalToken);
+      args.setPrincipalToken(principalToken);
       args.setTableName(tableName);
       sendBase("listConstraints", args);
     }
@@ -1101,16 +1101,16 @@ import org.slf4j.LoggerFactory;
       throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "listConstraints failed: unknown result");
     }
 
-    public void mergeTablets(PrincipalToken PrincipalToken, String tableName, ByteBuffer startRow, ByteBuffer endRow) throws AccumuloException, AccumuloSecurityException, TableNotFoundException, org.apache.thrift.TException
+    public void mergeTablets(PrincipalToken principalToken, String tableName, ByteBuffer startRow, ByteBuffer endRow) throws AccumuloException, AccumuloSecurityException, TableNotFoundException, org.apache.thrift.TException
     {
-      send_mergeTablets(PrincipalToken, tableName, startRow, endRow);
+      send_mergeTablets(principalToken, tableName, startRow, endRow);
       recv_mergeTablets();
     }
 
-    public void send_mergeTablets(PrincipalToken PrincipalToken, String tableName, ByteBuffer startRow, ByteBuffer endRow) throws org.apache.thrift.TException
+    public void send_mergeTablets(PrincipalToken principalToken, String tableName, ByteBuffer startRow, ByteBuffer endRow) throws org.apache.thrift.TException
     {
       mergeTablets_args args = new mergeTablets_args();
-      args.setPrincipalToken(PrincipalToken);
+      args.setPrincipalToken(principalToken);
       args.setTableName(tableName);
       args.setStartRow(startRow);
       args.setEndRow(endRow);
@@ -1133,16 +1133,16 @@ import org.slf4j.LoggerFactory;
       return;
     }
 
-    public void offlineTable(PrincipalToken PrincipalToken, String tableName) throws AccumuloSecurityException, AccumuloException, TableNotFoundException, org.apache.thrift.TException
+    public void offlineTable(PrincipalToken principalToken, String tableName) throws AccumuloSecurityException, AccumuloException, TableNotFoundException, org.apache.thrift.TException
     {
-      send_offlineTable(PrincipalToken, tableName);
+      send_offlineTable(principalToken, tableName);
       recv_offlineTable();
     }
 
-    public void send_offlineTable(PrincipalToken PrincipalToken, String tableName) throws org.apache.thrift.TException
+    public void send_offlineTable(PrincipalToken principalToken, String tableName) throws org.apache.thrift.TException
     {
       offlineTable_args args = new offlineTable_args();
-      args.setPrincipalToken(PrincipalToken);
+      args.setPrincipalToken(principalToken);
       args.setTableName(tableName);
       sendBase("offlineTable", args);
     }
@@ -1163,16 +1163,16 @@ import org.slf4j.LoggerFactory;
       return;
     }
 
-    public void onlineTable(PrincipalToken PrincipalToken, String tableName) throws AccumuloSecurityException, AccumuloException, TableNotFoundException, org.apache.thrift.TException
+    public void onlineTable(PrincipalToken principalToken, String tableName) throws AccumuloSecurityException, AccumuloException, TableNotFoundException, org.apache.thrift.TException
     {
-      send_onlineTable(PrincipalToken, tableName);
+      send_onlineTable(principalToken, tableName);
       recv_onlineTable();
     }
 
-    public void send_onlineTable(PrincipalToken PrincipalToken, String tableName) throws org.apache.thrift.TException
+    public void send_onlineTable(PrincipalToken principalToken, String tableName) throws org.apache.thrift.TException
     {
       onlineTable_args args = new onlineTable_args();
-      args.setPrincipalToken(PrincipalToken);
+      args.setPrincipalToken(principalToken);
       args.setTableName(tableName);
       sendBase("onlineTable", args);
     }
@@ -1193,16 +1193,16 @@ import org.slf4j.LoggerFactory;
       return;
     }
 
-    public void removeConstraint(PrincipalToken PrincipalToken, String tableName, int constraint) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException
+    public void removeConstraint(PrincipalToken principalToken, String tableName, int constraint) throws AccumuloException, AccumuloSecurityException, org.apache.thrift.TException
     {
-      send_removeConstraint(PrincipalToken, tableName, constraint);
+      send_removeConstraint(principalToken, tableName, constraint);
       recv_removeConstraint();
     }
 
-    public void send_removeConstraint(PrincipalToken PrincipalToken, String tableName, int constraint) throws org.apache.thrift.TException
+    public void send_removeConstraint(PrincipalToken principalToken, String tableName, int constraint) throws org.apache.thrift.TException
     {

[... 15500 lines stripped ...]