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 2010/10/19 20:24:25 UTC

svn commit: r1024345 - in /shiro/trunk/core/src/main/java/org/apache/shiro/authc: AuthenticationInfo.java HostAuthenticationToken.java

Author: lhazlewood
Date: Tue Oct 19 18:24:24 2010
New Revision: 1024345

URL: http://svn.apache.org/viewvc?rev=1024345&view=rev
Log:
SHIRO-198: Applied patch.  Cleaned up 2 minor spelling errors.

Modified:
    shiro/trunk/core/src/main/java/org/apache/shiro/authc/AuthenticationInfo.java
    shiro/trunk/core/src/main/java/org/apache/shiro/authc/HostAuthenticationToken.java

Modified: shiro/trunk/core/src/main/java/org/apache/shiro/authc/AuthenticationInfo.java
URL: http://svn.apache.org/viewvc/shiro/trunk/core/src/main/java/org/apache/shiro/authc/AuthenticationInfo.java?rev=1024345&r1=1024344&r2=1024345&view=diff
==============================================================================
--- shiro/trunk/core/src/main/java/org/apache/shiro/authc/AuthenticationInfo.java (original)
+++ shiro/trunk/core/src/main/java/org/apache/shiro/authc/AuthenticationInfo.java Tue Oct 19 18:24:24 2010
@@ -27,13 +27,13 @@ import java.io.Serializable;
  * <code>AuthenticationInfo</code> represents a Subject's (aka user's) stored account information relevant to the
  * authentication/log-in process only.
  * <p/>
- * It is important to understand the differnce between this interface and the
+ * It is important to understand the difference between this interface and the
  * {@link AuthenticationToken AuthenticationToken} interface.  <code>AuthenticationInfo</code> implementations
  * represent already-verified and stored account data, whereas an <code>AuthenticationToken</code> represents data
  * submitted for any given login attempt (which may or may not successfully match the verified and stored account
  * <code>AuthenticationInfo</code>).
  * <p/>
- * Because the act of authentication (log-in) is orthoganal to authorization (access control), this interface is
+ * Because the act of authentication (log-in) is orthogonal to authorization (access control), this interface is
  * intended to represent only the account data needed by Shiro during an authentication attempt.  Shiro also
  * has a parallel {@link org.apache.shiro.authz.AuthorizationInfo AuthorizationInfo} interface for use during the
  * authorization process that references access control data such as roles and permissions.

Modified: shiro/trunk/core/src/main/java/org/apache/shiro/authc/HostAuthenticationToken.java
URL: http://svn.apache.org/viewvc/shiro/trunk/core/src/main/java/org/apache/shiro/authc/HostAuthenticationToken.java?rev=1024345&r1=1024344&r2=1024345&view=diff
==============================================================================
--- shiro/trunk/core/src/main/java/org/apache/shiro/authc/HostAuthenticationToken.java (original)
+++ shiro/trunk/core/src/main/java/org/apache/shiro/authc/HostAuthenticationToken.java Tue Oct 19 18:24:24 2010
@@ -24,7 +24,7 @@ package org.apache.shiro.authc;
  *
  * @since 1.0
  */
-public interface HostAuthenticationToken {
+public interface HostAuthenticationToken extends AuthenticationToken {
 
     /**
      * Returns the host name of the client from where the