You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by ee...@apache.org on 2010/08/30 23:14:24 UTC

svn commit: r990943 - in /cassandra/trunk/interface: cassandra.thrift thrift/gen-java/org/apache/cassandra/thrift/AccessLevel.java

Author: eevans
Date: Mon Aug 30 21:14:23 2010
New Revision: 990943

URL: http://svn.apache.org/viewvc?rev=990943&view=rev
Log:
Remove AccessLevel from the client API

Patch by Stu Hood; reviewed by eevans for CASSANDRA-1320

Removed:
    cassandra/trunk/interface/thrift/gen-java/org/apache/cassandra/thrift/AccessLevel.java
Modified:
    cassandra/trunk/interface/cassandra.thrift

Modified: cassandra/trunk/interface/cassandra.thrift
URL: http://svn.apache.org/viewvc/cassandra/trunk/interface/cassandra.thrift?rev=990943&r1=990942&r2=990943&view=diff
==============================================================================
--- cassandra/trunk/interface/cassandra.thrift (original)
+++ cassandra/trunk/interface/cassandra.thrift Mon Aug 30 21:14:23 2010
@@ -317,20 +317,6 @@ struct TokenRange {
     3: required list<string> endpoints,
 }
 
-/** The AccessLevel is an enum that expresses the authorized access level granted to an API user:
- *
- *      NONE       No access permitted.
- *      READONLY   Only read access is allowed.
- *      READWRITE  Read and write access is allowed.
- *      FULL       Read, write, and remove access is allowed.
-*/
-enum AccessLevel {
-    NONE = 0,
-    READONLY = 16,
-    READWRITE = 32,
-    FULL = 64,
-}
-
 /**
     Authentication requests can contain any data, dependent on the IAuthenticator used
 */