cassandra/examples/simple_authentication
Eric Evans 2ede7fc4be move FBUtils methods for bytes<->hex to separate class
Patch by eevans; reviewed by jbellis for CASSANDRA-3299

Conflicts:

	drivers/java/test/org/apache/cassandra/cql/JdbcDriverTest.java
	drivers/java/test/org/apache/cassandra/cql/jdbc/PreparedStatementTest.java

git-svn-id: https://svn.apache.org/repos/asf/cassandra/branches/cassandra-1.0@1181025 13f79535-47bb-0310-9956-ffa450edef68
2011-10-10 15:38:37 +00:00
..
conf Move SimpleAuthenticator and SimpleAuthority to examples/ 2011-10-07 15:29:22 +00:00
src/org/apache/cassandra/auth move FBUtils methods for bytes<->hex to separate class 2011-10-10 15:38:37 +00:00
README.txt Move SimpleAuthenticator and SimpleAuthority to examples/ 2011-10-07 15:29:22 +00:00

README.txt

The files in this directory provide a (simplistic) example of how to add
authentication and resource permissions to Cassandra by implementing the
org.apache.cassandra.auth.{IAuthenticator, IAuthority} interfaces.

To try those examples, copy the two JAVA sources (in src/) into the main
cassandra sources directory and the two configuration files (in conf/) in the
main cassandra configuration directory.

You can then set the authenticator and authority properties in cassandra.yaml
to use those classes. See the two configuration files access.properties and
passwd.properties to configure the authorized users and permissions.

Please note that the code in this directory is for demonstration purposes. In
particular, it does not provide a high level of security.