Index: hbase-client/src/main/java/org/apache/hadoop/hbase/client/HBaseAdmin.java =================================================================== --- hbase-client/src/main/java/org/apache/hadoop/hbase/client/HBaseAdmin.java (revision 1512515) +++ hbase-client/src/main/java/org/apache/hadoop/hbase/client/HBaseAdmin.java (working copy) @@ -2110,7 +2110,7 @@ /** * Get a namespace descriptor by name * @param name name of namespace descriptor - * @return + * @return A descriptor * @throws IOException */ public NamespaceDescriptor getNamespaceDescriptor(final String name) throws IOException { @@ -2128,7 +2128,7 @@ /** * List available namespace descriptors - * @return + * @return List of descriptors * @throws IOException */ public NamespaceDescriptor[] listNamespaceDescriptors() throws IOException { @@ -2152,7 +2152,7 @@ /** * Get list of table descriptors by namespace * @param name namespace name - * @return + * @return A descriptor * @throws IOException */ public HTableDescriptor[] getTableDescriptorsByNamespace(final String name) throws IOException { @@ -2270,7 +2270,7 @@ /** * Get tableDescriptors - * @param tableNames List of table names + * @param names List of table names * @return HTD[] the tableDescriptor * @throws IOException if a remote or network exception occurs */ @@ -2453,8 +2453,7 @@ * snapshot with the same name (even a different type or with different parameters) will fail with * a {@link SnapshotCreationException} indicating the duplicate naming. *
- * Snapshot names follow the same naming constraints as tables in HBase. See
- * {@link HTableDescriptor#isLegalTableName(byte[])}.
+ * Snapshot names follow the same naming constraints as tables in HBase.
* @param snapshotName name of the snapshot to be created
* @param tableName name of the table for which snapshot is created
* @throws IOException if a remote or network exception occurs
Index: hbase-client/src/main/java/org/apache/hadoop/hbase/protobuf/RequestConverter.java
===================================================================
--- hbase-client/src/main/java/org/apache/hadoop/hbase/protobuf/RequestConverter.java (revision 1512515)
+++ hbase-client/src/main/java/org/apache/hadoop/hbase/protobuf/RequestConverter.java (working copy)
@@ -461,10 +461,10 @@
builder.setScannerId(scannerId);
return builder.build();
}
-
+
/**
* Create a protocol buffer ScanRequest for a scanner id
- *
+ *
* @param scannerId
* @param numberOfRows
* @param closeScanner
@@ -1073,7 +1073,7 @@
/**
* Creates a protocol buffer ModifyTableRequest
*
- * @param table
+ * @param tableName
* @param hTableDesc
* @return a ModifyTableRequest
*/
Index: hbase-server/src/main/java/org/apache/hadoop/hbase/master/MasterServices.java
===================================================================
--- hbase-server/src/main/java/org/apache/hadoop/hbase/master/MasterServices.java (revision 1512515)
+++ hbase-server/src/main/java/org/apache/hadoop/hbase/master/MasterServices.java (working copy)
@@ -215,14 +215,14 @@
/**
* Get a namespace descriptor by name
* @param name name of namespace descriptor
- * @return
+ * @return A descriptor
* @throws IOException
*/
public NamespaceDescriptor getNamespaceDescriptor(String name) throws IOException;
/**
* List available namespace descriptors
- * @return
+ * @return A descriptor
* @throws IOException
*/
public List