Commit 9a840167 authored by guus's avatar guus

Javadoc spelling fixes.

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@13488 b35dd754-fafc-0310-a699-88a17e54d16e
parent 3327730b
...@@ -38,7 +38,7 @@ import org.slf4j.LoggerFactory; ...@@ -38,7 +38,7 @@ import org.slf4j.LoggerFactory;
* <p/> * <p/>
* Overall description of the authentication and authorization process: * Overall description of the authentication and authorization process:
* <p/> * <p/>
* After a client connects, and idicates a desire to use SASL, the * After a client connects, and indicates a desire to use SASL, the
* SASLAuthentication object decides which SASL mechanisms to advertise, * SASLAuthentication object decides which SASL mechanisms to advertise,
* and then performs the authentication. If authentication is successful, * and then performs the authentication. If authentication is successful,
* the XMPPCallbackHandler is asked to handle() an AuthorizeCallback. The * the XMPPCallbackHandler is asked to handle() an AuthorizeCallback. The
...@@ -49,7 +49,7 @@ import org.slf4j.LoggerFactory; ...@@ -49,7 +49,7 @@ import org.slf4j.LoggerFactory;
* the principal to the username. If no classes authorize the principal, * the principal to the username. If no classes authorize the principal,
* false is returned, which traces all the way back to give the client an * false is returned, which traces all the way back to give the client an
* unauthorized message. Its important to note that the message the client * unauthorized message. Its important to note that the message the client
* recieves will give no indication if the principal authentiated successfully, * receives will give no indication if the principal authenticated successfully,
* you will need to check the server logs for that information. * you will need to check the server logs for that information.
* *
* @author Jay Kline * @author Jay Kline
......
...@@ -44,7 +44,7 @@ package org.jivesoftware.openfire.auth; ...@@ -44,7 +44,7 @@ package org.jivesoftware.openfire.auth;
public interface AuthorizationPolicy { public interface AuthorizationPolicy {
/** /**
* Returns true if the principal is explicity authorized to the JID * Returns true if the principal is explicitly authorized to the JID
* *
* @param username The username requested. * @param username The username requested.
* @param principal The principal requesting the username. * @param principal The principal requesting the username.
......
...@@ -76,7 +76,7 @@ public class DefaultAuthorizationPolicy implements AuthorizationPolicy { ...@@ -76,7 +76,7 @@ public class DefaultAuthorizationPolicy implements AuthorizationPolicy {
} }
/** /**
* Returns true if the principal is explicity authorized to the JID * Returns true if the principal is explicitly authorized to the JID
* *
* @param username The username requested. * @param username The username requested.
* @param authenID The authenticated ID (principal) requesting the username. * @param authenID The authenticated ID (principal) requesting the username.
......
...@@ -62,7 +62,7 @@ public class LdapAuthorizationPolicy implements AuthorizationPolicy { ...@@ -62,7 +62,7 @@ public class LdapAuthorizationPolicy implements AuthorizationPolicy {
} }
/** /**
* Returns if the principal is explicity authorized to the JID, throws * Returns if the principal is explicitly authorized to the JID, throws
* an UnauthorizedException otherwise * an UnauthorizedException otherwise
* *
* @param username The username requested.import org.jivesoftware.openfire.ldap.*; * @param username The username requested.import org.jivesoftware.openfire.ldap.*;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment