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 ...@@ -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 * 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 * 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. * @param username the user.
* @return number of available sessions for a user. * @return number of available sessions for a user.
*/ */
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
<ul> <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>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</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> </ul>
</body> </body>
......
...@@ -334,7 +334,7 @@ public abstract class MediaProxySession extends Thread implements ProxyCandidate ...@@ -334,7 +334,7 @@ public abstract class MediaProxySession extends Thread implements ProxyCandidate
/** /**
* Get the Port A IP * Get the Port A IP
* *
* @return * @return the port for A
*/ */
public int getPortA() { public int getPortA() {
return portA; return portA;
......
...@@ -670,8 +670,7 @@ public class Base64 ...@@ -670,8 +670,7 @@ public class Base64
* @param source The data to convert * @param source The data to convert
* @param off Offset in array where conversion should begin * @param off Offset in array where conversion should begin
* @param len Length of data to convert * @param len Length of data to convert
* @param options Specified options * @param options Specified options; alphabet type is pulled from this (standard, url-safe, ordered)
* @param options alphabet type is pulled from this (standard, url-safe, ordered)
* @see Base64#GZIP * @see Base64#GZIP
* @see Base64#DONT_BREAK_LINES * @see Base64#DONT_BREAK_LINES
* @since 2.0 * @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