You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shiro.apache.org by lh...@apache.org on 2015/04/12 04:01:51 UTC

svn commit: r1672966 - /shiro/site/trunk/authentication-features.md

Author: lhazlewood
Date: Sun Apr 12 02:01:50 2015
New Revision: 1672966

URL: http://svn.apache.org/r1672966
Log:
SHIRO-507: applied requested change

Modified:
    shiro/site/trunk/authentication-features.md

Modified: shiro/site/trunk/authentication-features.md
URL: http://svn.apache.org/viewvc/shiro/site/trunk/authentication-features.md?rev=1672966&r1=1672965&r2=1672966&view=diff
==============================================================================
--- shiro/site/trunk/authentication-features.md (original)
+++ shiro/site/trunk/authentication-features.md Sun Apr 12 02:01:50 2015
@@ -41,7 +41,7 @@ The Shiro framework is designed to make
 
 *   **'Remember Me' built in** - Standard in the Shiro API is the ability to remember your users if they return to your application.  You can offer a better user experience to your them with minimal development effort.
 
-*   **Pluggable data sources** - Shiro uses pluggable data access objects (DAOs), called Realms, to connect to security data sources like LDAP and Active Directory.  To help you avoid building and maintaining integrations yourself, Shiro provides out-of-the-box realms for popular data sources like LDAP, Active Directory, Kerberos, and JDBC.  If needed, you can also create your own realms to support specific functionality not included in the basic realms.
+*   **Pluggable data sources** - Shiro uses pluggable data access objects (DAOs), called Realms, to connect to security data sources like LDAP and Active Directory.  To help you avoid building and maintaining integrations yourself, Shiro provides out-of-the-box realms for popular data sources like LDAP, Active Directory, and JDBC.  If needed, you can also create your own realms to support specific functionality not included in the basic realms.
 
 *   **Login with one or more realms** - Using Shiro, you can easily authenticate a user against one or more realms and return one unified view of their identity.  In addition, you can customize the authentication process with Shiro's notion of an authentication strategy. The strategies can be setup in configuration files so changes don't require source code modifications-- reducing complexity and maintenance effort.