Commit 082efb90 authored by Daniel Henninger's avatar Daniel Henninger Committed by dhenninger

Cleaning up a couple of compile time warnings.


git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@9621 b35dd754-fafc-0310-a699-88a17e54d16e
parent e5b29e97
......@@ -882,8 +882,9 @@ public class SessionManager extends BasicModule implements ClusterEventListener
/**
* Returns the number of sessions for a user that are available. For the count
* of all sessions for the user, including sessions that are just starting
* or closed, see {@see #getConnectionsCount(String)}.
* or closed.
*
* @see #getConnectionsCount(boolean)
* @param username the user.
* @return number of available sessions for a user.
*/
......
......@@ -8,7 +8,7 @@
<ul>
<li><b>Authentication</b>. Authentication is the process of verifying a user. Custom authentication implementations can be created by extending the {@link org.jivesoftware.openfire.auth.AuthProvider} interface.</li>
<li><b>Authorization</b>. Authorization is the process of allowing an authenticated identity to choose a username. Default authorization will authorize an authenticated username to the same username only. Custom authorization implementations can be created by extending the {@link org.jivesoftware.openfire.auth.AuthorizationPolicy} interface.</li>
<li><b>Authorization Mapping</b>. Mapping occurs when the client did not request any specific username. This provides a method of giving a default username in these situations. Custom authorization mappings can be created by extending the {@link org.jivesoftware.auth.AuthorizationMapping} interface.</li>
<li><b>Authorization Mapping</b>. Mapping occurs when the client did not request any specific username. This provides a method of giving a default username in these situations. Custom authorization mappings can be created by extending the {@link org.jivesoftware.openfire.auth.AuthorizationMapping} interface.</li>
</ul>
</body>
......
......@@ -334,7 +334,7 @@ public abstract class MediaProxySession extends Thread implements ProxyCandidate
/**
* Get the Port A IP
*
* @return
* @return the port for A
*/
public int getPortA() {
return portA;
......
......@@ -670,8 +670,7 @@ public class Base64
* @param source The data to convert
* @param off Offset in array where conversion should begin
* @param len Length of data to convert
* @param options Specified options
* @param options alphabet type is pulled from this (standard, url-safe, ordered)
* @param options Specified options; alphabet type is pulled from this (standard, url-safe, ordered)
* @see Base64#GZIP
* @see Base64#DONT_BREAK_LINES
* @since 2.0
......
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