You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by bi...@apache.org on 2012/01/04 17:41:43 UTC

svn commit: r1227215 - /incubator/accumulo/branches/1.3/src/core/src/main/java/org/apache/accumulo/core/client/Connector.java

Author: billie
Date: Wed Jan  4 16:41:43 2012
New Revision: 1227215

URL: http://svn.apache.org/viewvc?rev=1227215&view=rev
Log:
ACCUMULO-223 fixed Connector javadocs

Modified:
    incubator/accumulo/branches/1.3/src/core/src/main/java/org/apache/accumulo/core/client/Connector.java

Modified: incubator/accumulo/branches/1.3/src/core/src/main/java/org/apache/accumulo/core/client/Connector.java
URL: http://svn.apache.org/viewvc/incubator/accumulo/branches/1.3/src/core/src/main/java/org/apache/accumulo/core/client/Connector.java?rev=1227215&r1=1227214&r2=1227215&view=diff
==============================================================================
--- incubator/accumulo/branches/1.3/src/core/src/main/java/org/apache/accumulo/core/client/Connector.java (original)
+++ incubator/accumulo/branches/1.3/src/core/src/main/java/org/apache/accumulo/core/client/Connector.java Wed Jan  4 16:41:43 2012
@@ -42,9 +42,9 @@ public class Connector {
    * @param tableName
    *          the name of the table to query
    * @param authorizations
-   *          A set of authorization labels that will be checked against the column visibility of each key inorder to filter data. The authorizations passed in
-   *          for scanning are intersected with the accumulo users set of authorizations. So if the accumulo user has authorizations (A1, A2) and authorizations
-   *          (A2,A3) are passed, then (A2) will be used for the scan.
+   *          A set of authorization labels that will be checked against the column visibility of each key in order to filter data. The authorizations passed in
+   *          must be a subset of the accumulo user's set of authorizations. If the accumulo user has authorizations (A1, A2) and authorizations (A2, A3) are
+   *          passed, then an exception will be thrown.
    * @param numQueryThreads
    *          the number of concurrent threads to spawn for querying
    * 
@@ -62,9 +62,9 @@ public class Connector {
    * @param tableName
    *          the name of the table to query and delete from
    * @param authorizations
-   *          A set of authorization labels that will be checked against the column visibility of each key inorder to filter data. The authorizations passed in
-   *          for scanning are intersected with the accumulo users set of authorizations. So if the accumulo user has authorizations (A1, A2) and authorizations
-   *          (A2,A3) are passed, then (A2) will be used for the scan.
+   *          A set of authorization labels that will be checked against the column visibility of each key in order to filter data. The authorizations passed in
+   *          must be a subset of the accumulo user's set of authorizations. If the accumulo user has authorizations (A1, A2) and authorizations (A2, A3) are
+   *          passed, then an exception will be thrown.
    * @param numQueryThreads
    *          the number of concurrent threads to spawn for querying
    * @param maxMemory
@@ -126,9 +126,9 @@ public class Connector {
    * @param tableName
    *          the name of the table to query data from
    * @param authorizations
-   *          A set of authorization labels that will be checked against the column visibility of each key inorder to filter data. The authorizations passed in
-   *          for scanning are intersected with the accumulo users set of authorizations. So if the accumulo user has authorizations (A1, A2) and authorizations
-   *          (A2,A3) are passed, then (A2) will be used for the scan.
+   *          A set of authorization labels that will be checked against the column visibility of each key in order to filter data. The authorizations passed in
+   *          must be a subset of the accumulo user's set of authorizations. If the accumulo user has authorizations (A1, A2) and authorizations (A2, A3) are
+   *          passed, then an exception will be thrown.
    * 
    * @return Scanner object for configuring and querying data with
    * @throws TableNotFoundException