HBASE-8043 Fix a few javadoc warnings...
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1454471 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d600c61ca3
commit
90e4bc2aa9
|
@ -83,7 +83,7 @@ import com.google.protobuf.InvalidProtocolBufferException;
|
||||||
* group,family,qualifier column qualifier level permissions for a group
|
* group,family,qualifier column qualifier level permissions for a group
|
||||||
* </pre>
|
* </pre>
|
||||||
* All values are encoded as byte arrays containing the codes from the
|
* All values are encoded as byte arrays containing the codes from the
|
||||||
* {@link org.apache.hadoop.hbase.security.access.TablePermission.Action} enum.
|
* org.apache.hadoop.hbase.security.access.TablePermission.Action enum.
|
||||||
* </p>
|
* </p>
|
||||||
*/
|
*/
|
||||||
public class AccessControlLists {
|
public class AccessControlLists {
|
||||||
|
@ -320,7 +320,7 @@ public class AccessControlLists {
|
||||||
|
|
||||||
Map<byte[],ListMultimap<String,TablePermission>> allPerms =
|
Map<byte[],ListMultimap<String,TablePermission>> allPerms =
|
||||||
new TreeMap<byte[],ListMultimap<String,TablePermission>>(Bytes.BYTES_COMPARATOR);
|
new TreeMap<byte[],ListMultimap<String,TablePermission>>(Bytes.BYTES_COMPARATOR);
|
||||||
|
|
||||||
// do a full scan of _acl_ table
|
// do a full scan of _acl_ table
|
||||||
|
|
||||||
Scan scan = new Scan();
|
Scan scan = new Scan();
|
||||||
|
|
|
@ -42,12 +42,12 @@ takes command and drives this package out of existence replacing it w/ an Interf
|
||||||
better matches the hbase API (this package was modelled on old HBase API long since dropped).
|
better matches the hbase API (this package was modelled on old HBase API long since dropped).
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>The {@link org.apache.hadoop.hbase.thrift.generated.Hbase.Iface HBase API} is defined in the
|
<p>The org.apache.hadoop.hbase.thrift.generated.Hbase.Iface HBase API is defined in the
|
||||||
file <a href="doc-files/index.html">Hbase.thrift</a> (Click the former to see the
|
file <a href="doc-files/index.html">Hbase.thrift</a> (Click the former to see the
|
||||||
thrift generated documentation of thrift interface). A server-side implementation of the API is in
|
thrift generated documentation of thrift interface). A server-side implementation of the API is in
|
||||||
{@link org.apache.hadoop.hbase.thrift.ThriftServer}. The generated interfaces,
|
{@link org.apache.hadoop.hbase.thrift.ThriftServer}. The generated interfaces,
|
||||||
types, and RPC utility files reside in the
|
types, and RPC utility files reside in the
|
||||||
{@link org.apache.hadoop.hbase.thrift.generated} package.
|
org.apache.hadoop.hbase.thrift.generated package.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>To start ThriftServer, use:
|
<p>To start ThriftServer, use:
|
||||||
|
|
Loading…
Reference in New Issue